EnableCameraOrtho
From MaratisWiki
enableCameraOrtho(object, bool)
Enable or disable orthographic view.
-
object
: object to operate on -
bool
: true or false to enable or disable
Camera = getCurrentCamera() -- Use orthographic view enableCameraOrtho(Camera, true) -- Use perspective view enableCameraOrtho(Camera, false)
To check if camera is orthographic use isCameraOrtho.