Modifying the Camera Speed
by VcDeveloper · in Torque 3D Professional · 10/17/2011 (9:44 pm) · 3 replies
Hi, going through the "Simple FPS Tutorial for Torque3D". Need help in modifying the Camera Speed. To fast and makes me feel dizzy, not smooth and feels unnatural, so where is the code that sets the camera speed?
I looked in scripts/server/camera.cs and changing the variable there didn't effect the speed.
// Global movement speed that affects all cameras. This should be moved
// into the camera datablock.
$Camera::movementSpeed = 40;
Thanks!...
I looked in scripts/server/camera.cs and changing the variable there didn't effect the speed.
// Global movement speed that affects all cameras. This should be moved
// into the camera datablock.
$Camera::movementSpeed = 40;
Thanks!...
#2
If it's in game, the camera should move with the player - when switching from the editor make sure the camera is in player mode.
10/18/2011 (9:34 pm)
Which camera speed? In game or in the editor? If it's in the editor, there is a camera speed slider on the toolbar. You can also type a value into the box above the slider.If it's in game, the camera should move with the player - when switching from the editor make sure the camera is in player mode.
#3
10/19/2011 (9:50 am)
Camera speed or mouse movement/turning speed? Camera movement speed is for use within the Editor. If the movement of the player's camera is the problem then that can be solved by implementing mouse sensitivity, of which there are a couple of Resources to show how.
Torque Owner VcDeveloper