Version: 2022.3
언어: 한국어
public float farClipPlane ;

설명

The far clipping plane distance.

The projector will not affect anything that is further than this distance. See Also: projector component.

using UnityEngine;

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