Hello All,
I was trying out a script its so simple,
I want a grid of n-particles which is given with an expression on speed and lifespanPP
I want those n-particles should die whose speed is greater than 1 .
so ,I simply created the speed a float variable and assign the Mag(particleShape1.velocity)
so it would be easy for me to check the numeric mode of velocity in integer value ok,
I simply used if statement to run the statement and it is working fine with classic particles.
that is only those particles are dying whose speed is greater than 1 after assigning the turbulence field with volume type.I also enabled secondary particles from first one(grid) and used if speed is greater than one then based on per-point emission rate let the rate is multiplied by speed.So with that I can have only those particles emitting secondary ones that are having speed and rest should not emit any secondary.
to let the first particles which are having speed,they must also die for those i prepared the lifespanepp = 1 or 2 . but this is not working with n-particles but perfect with classic particles.
so my question is why is it working fine with classic particle but Why not with N-particles.