im not gonna lie to you, ive got several examples and other tutorials on this subject but i still cant seem to make a decent effect,
All i want to do is when a player clicks a button, a active is destroyed, i would like some sort of firwork effect or somthing like that to go off at the actives position when this active is destroyed.
can somone show me how this is done, without fast loops would be nice (i cant us em, and ive tried)
Well, a simple way would be to create a particle object with ball movement with a random starting direction, then ass the object is destroyed keep creating a particle object at the object's location (And add a random number to the X and Y co-ordinate to make it look more natural). Make the particles fade out too
I'd do this with a trigger. When something is destroyed - create Active 1.
Active 1 will always be invisible and have a short lifespan. Say, Value A is less than 10, add 1 to Value A. Value A is equal or greater than to 10; destroy.
Value A is less than 10; create bouncing ball particle, set direction to Active 1, Value A*3 (or whatever). That will give you a spiral effect.
Then add to the value of the new particles and when their values are greater than X amount have them be destroyed too.
One of my faves is to add to their transparency, and when that is greater than 128 have them be destroyed.