Game Development Community

Can Hover Vehicles jump?

by Firas · in Torque Game Engine · 07/04/2005 (10:07 am) · 4 replies

Guys

I have question about the hover Vehicles which is:

I wont to press on a key and make the hover jump can I do this?

is there any example or does anyone before do it?

thanks

#1
07/04/2005 (10:20 am)
No, AFIK hovers cannot "jump".

If your project needs vertical thrust capabilities then you need to look into the flyer class.

If memory serves, the flyers in Tribes 2 had vertical thrust.

~ Hope this helps.
#2
07/04/2005 (10:26 am)
But what exactly in the flyers make the vertical thrust?
#3
07/04/2005 (10:57 am)
I'm not exactly well versed in the flyer class (working with hovers myself), but I believe there used to be a "vertThrustFactor" variable exposed to the console.

You might try searching through some of the older resources as the newer ones I've looked at don't address this.
#4
07/04/2005 (6:12 pm)
It is pretty easy to get them to jump (one of the first scripts I wrote for TGE). Just bind an applyImpulse() command to your jump key (search the scripts for an example of applyImpulse()). You'll need to use a cmdToServer to get it working over the network.