Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

var orthographic: bool;

Description

Is the camera orthographic (true) or perspective (false)?

When ortho is true, camera's viewing volume is defined by orthographicSize.
When orthographic is false, camera's viewing volume is defined by fieldOfView.

See Also: camera component, transparencySortMode.

	// Set the camera to be orthograpghic

camera.orthographic = true;

Specifically for the main camera:

	// Set the main camera to be orthographic

Camera.main.orthographic = true;