08-21-2013, 08:05 AM
(08-20-2013, 07:46 PM)lukasspro777 Wrote: This is pretty amazing, I didn't know MagicBox can be modified this way, will definitely look into this more during the next few days.Magical Box was designed from the ground up to be as modular and extendable as possible. And of course you can roll your own custom emitters as easy as parameters.
Quote:I ran into just one problem while trying to use this on my scene, and it's the following. I use a simple rotation script which makes the ship tilt to one side, then back (simulation of a ballast system), however, the particles don't seem to follow the curvy spline as it rotates together with the object. It worked fine when I was using the Position by Curvy Spline default parameter included with MagicBox, but with this Custom one, I guess it does not recalculate the path as the spline moves.This was intentional because it's the fastest method. Curvy itself interpolates world coordinates, Magical Box uses ParticleSpace coordinates (i.e. the local space of the MBParticleSystem object). So you'll just have to use default TransformPoint/InverseTransformPoint to translate coordinates...OR you replace PT.Position with PT.WorldPosition, that will do exactly the same
Any simple fix for this or?
Jake