i have a particle system with an emission rate set to 3, its works up until i call its emit function with 25 particles. then it just stops, and nothing will turn its normal 3 emission back on except restarting the scene.
if you would like to see the code its here:
function Attacked(att:Attack)
{
if(att.type == "Kick" || att.type == "Blunt")
{
health -= 10;
fireLight.range -= 1.5;
fireLight.intensity -= .35;
fire.emissionRate -= 6;//differant ParticleSystem
}
sparks.Emit(25); // this is the ParticleSystem in question
}
nothing special just an emit at that line
does anyone know whats going on?
↧