- Home /
ParticleSystem performance optimization questions: Clear(), Stop(), SetActive(false)
Say I have a ParticleSystem Component on a GameObject.
If .SetActive(false) is called on that GameObject while the ParticleSystem is still playing, does the ParticleSystem .Clear() itself?
Does it cost anything performance-wise to call .SetActive(false) on a GameObject containing a ParticleSystem that isPlaying (would it be better to .Clear() it first?)?
What about .Stop()? Does .Stop() also Clear() a ParticleSystem?
When should I use .Clear()?
Your answer

Follow this Question
Related Questions
can someone explain particle collision to me? 3 Answers
Gems shine effect (particle system ) reducing my performance. 2 Answers
Optimizing the Performance of a Large Particle System 2 Answers
Does a script containing many variables affect performance? 1 Answer
Particle backgrounds not transparent 4 Answers