How to change order of emitters in editor ?
by Arsen Gnatkivskyi · in Torque Game Builder · 01/02/2008 (2:20 pm) · 4 replies
It is possible to change order of emitters in particle?
Perhaps I want to sent emitter to front, how I can do it ?
Thanks
Perhaps I want to sent emitter to front, how I can do it ?
Thanks
#2
01/03/2008 (4:51 am)
Is it only way ? And how to do it in script ?
#3
02/18/2010 (7:44 pm)
I'd like the answer to do this too.
#4
1) Bring up TGB and add your particle effect to the scene.
2) Click on "Project" and find the effect in the list. Record the ID of the number (mine, right now, is 4338).
3) Hit "Ctrl-~" and type in "4338.moveEmitter(0,1);". This moves Emitter 0 to position 1. Use the numbers appropriate to you. Hit "Ctrl-~" to hide the console.
4) Click on another object and back onto the particle effect. The emitters will now be reordered!
I've considered adding a button to the Emitter to move it up and down the stack, but since I only need this occasionally, I don't mind typing it into the console.
02/18/2010 (10:17 pm)
Ready for some ickiness?1) Bring up TGB and add your particle effect to the scene.
2) Click on "Project" and find the effect in the list. Record the ID of the number (mine, right now, is 4338).
3) Hit "Ctrl-~" and type in "4338.moveEmitter(0,1);". This moves Emitter 0 to position 1. Use the numbers appropriate to you. Hit "Ctrl-~" to hide the console.
4) Click on another object and back onto the particle effect. The emitters will now be reordered!
I've considered adding a button to the Emitter to move it up and down the stack, but since I only need this occasionally, I don't mind typing it into the console.
Torque Owner Tyler Slabinski