The far clipping plane distance.
The projector will not affect anything that is further than this distance. Additional resources: projector component.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { // Get the projector Projector proj = GetComponent<Projector>(); // Use it proj.farClipPlane = 20.0f; } }