Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


farClipPlane

The far clipping plane distance.
Read time 1 minuteLast updated 12 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
Warning
Deprecated. Projector component is deprecated now that the Built-In Render Pipeline is deprecated. To use an alternative, refer to the documentation in the component help icon. #from(6000.5)
public float farClipPlane { get; set; }

Remarks

The projector will not affect anything that is further than this distance. Additional Resources: projector component.

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { // Get the projector Projector proj = GetComponent<Projector>(); // Use it proj.farClipPlane = 20.0f; }}