Removed

GameObject.camera

Switch to Manual
Obsolete Property camera has been deprecated. Use GetComponent<Camera>() instead. public Component camera;

Description

The Camera attached to this GameObject (Read Only). (Null if there is none attached).

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Use GetComponent to access the camera Camera cam = gameObject.GetComponent<Camera>(); cam.fieldOfView = 45; } }

Did you find this page useful? Please give it a rating: