用天空盒清除。
如果未设置天空盒,Reflection Probe 将用 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;
}
}