Game Development Community

Fly objects

by Danny Mejia · in Torque Game Builder · 08/21/2006 (2:47 pm) · 2 replies

I need in object to shot up than follow in arc what would be the best way to do this?

#1
08/21/2006 (3:04 pm)
Do you want them to be in the same shape all the time, or random? You could use set an impulse force at an angle (using setImpulseForcePolar()). Also apply gravity to the object (could do this by using setConstantForceY()). That should have the object move like a projectile. I guess you could also use paths as well if you want a constant shaped arc across all computers.
#2
08/21/2006 (3:57 pm)
Thinks