スカイボックスをクリアする
スカイボックスが設定されていない場合、反射プローブは 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; } }