Version: 2022.3
언어: 한국어

설명

Clear with the skybox.

If a skybox is not set up, the Reflection Probe will clear with a backgroundColor. See Also: ReflectionProbe.clearFlags property.

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>();

// Clear with skybox probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox; } }