Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


cameraType

Identifies what kind of camera this is, using the CameraType enum.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public CameraType cameraType { get; set; }

Remarks

Regular cameras in your scene have a value of CameraType.Game, both at runtime and in the Unity Editor. Cameras that render different parts of the Unity Editor have other values; for example, cameras that render the Scene view have a value of CameraType.SceneView.
This is useful in the Scriptable Render Pipeline, where you can define different rendering behavior for Unity Editor cameras as well as cameras in your scene.
Additional Resources: CameraType