用天空盒清除。
如果未设置天空盒,反射探针将使用backgroundColor清除。其他资源:ReflectionProbe.clearFlags属性。
using UnityEngine; using System.Collections;
public class ExampleScript : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>();
// Clear with skybox probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox; } }