包含此页的版本:
不含此页的版本:
远裁剪面距离。
投影器不影响远于此距离的任何内容。 另请参阅:projector component。
using UnityEngine;public class Example : MonoBehaviour { void Start() { // Get the projector Projector proj = GetComponent<Projector>(); // Use it proj.farClipPlane = 20.0f; } }