Game Development Community

Vehicle out runs 3rd person camera in reverse

by Ronald J Nelson · in Torque Game Engine Advanced · 04/20/2008 (11:07 pm) · 2 replies

All I have done is increase the max speed of the vehicle. Now if you travel in reverse (While in 3rd person view) and reach a high enough speed, the vehicle will disappear.

Any ideas?

#1
04/21/2008 (12:59 am)
I wouldn't call this a bug. You will have to change your camera setttings in your Vehicle Datablock. I would suggest you making your CameraLag less.

// camera
   cameraRoll     = true;  // Roll the camera with the vehicle
   cameraMaxDist  = 0.2;     // Far distance from vehicle
   cameraOffset   = 0;   // Vertical offset from camera mount point
   cameraLag      = 0.02;   // Velocity lag of camera
   cameraDecay    = 2;  // Decay per sec. rate of velocity lag
#2
04/21/2008 (4:35 am)
You are correct, not a bug. Also, thank you for your help.