- Home /
How to destroy live particle in Shuriken
Particle is not GameObject. So Destroy() is not applicable. (I need to remove a particle on mouse click on it)
Comment
Best Answer
Answer by salat · Jun 05, 2013 at 10:01 AM
I found answer. To remove particle we need to get array of particles with GetParticles() then set LifeTime to zero or -1 and assign this array back with SetParticles().