Page 1 of 1

Magic Particles in Marmalade

PostPosted: Wed Sep 25, 2013 1:22 pm
by Raju.Gatoss
How to draw a single particle at different positions at the same time....
I want to draw a particle at 4 positions simultaneously.
I Used MP_Emitter::SetPosition(MP_POSITION& position) method to set positions in update method.
But there is no use. Particle is drawing at only one position.

Re: Magic Particles in Marmalade

PostPosted: Wed Sep 25, 2013 3:19 pm
by Odin_KG
MP_Emitter::SetPosition(MP_POSITION& position) moves the emitter only. You need to duplicate the emitter. Use MP_Manager::DuplicateEmitter() to create a copy of the emitter. Then you may move the copies to the different position.