Thruster effect using particle engine

232 views Asked by At

I've been trying to make a sort of thruster effect for a spaceship using a particle engine and I can't seem to get the effect i'm looking for. I followed this tutorial for the particle engine: http://rbwhitaker.wikidot.com/2d-particle-engine-1

I want the particle to go inwards rather than out. Something like this but with the particles not a static image:

or something along these lines:

1

There are 1 answers

1
Danilo Breda On BEST ANSWER

Try to change the angularVelocity and the Size for a bigger value.(sorry for my bad english) I dont know how the: public void Update() is working but...try this too:

public void Update()
    {
        TTL--;
        Position += Velocity + 1;//or other value...test it!
        Angle += AngularVelocity;
    }