nearClipPlane
The near clipping plane distance.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public float nearClipPlane { get; set; }
Remarks
The projector will not affect anything that is nearer than this distance. Additional Resources: projector component.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { Projector proj = GetComponent<Projector>(); proj.nearClipPlane = 0.5f; }}