Game Development Community

Howto set orthographic view in the game?

by xen · in Torque Game Engine · 03/27/2006 (12:09 am) · 4 replies

Can i eliminate perspective distortion in the view, while the game is being played? or change fov on the fly? torque showtool pro can do it, i was hoping it was possible in torquescript or whatever..

#1
03/27/2006 (7:14 am)
You can cheat and place the camera very far away and then setting a narrow FOV. The effect is the same.

Else you have to hack the engine code. There is no script switch (AFAIK) to change the view
#2
03/27/2006 (7:36 am)
Here is an old topic about accomplishing it with the Advanced Camera resource.
#3
03/28/2006 (12:45 am)
> You can cheat and place the camera very far away and then setting a narrow FOV. The effect is the same.

so how do you set the camera to a narrow FOV? is there a camera.setFOV() function or something?
#4
03/28/2006 (3:35 am)
A simple

setFOV(10);

in the console