Version: 2022.3
言語: 日本語

説明

Adds a delegate to get notifications when the default specular Cubemap is changed.

See Also: ReflectionProbe.

using UnityEngine;
using UnityEngine.Rendering;

public class ReflectionProbeManager : MonoBehaviour { private static void OnSetDefaultReflection(Texture cubemap) { Debug.Log("Default reflection cubemap was changed."); }

void Start() { ReflectionProbe.defaultReflectionTexture += OnSetDefaultReflection; }

void OnDestroy() { ReflectionProbe.defaultReflectionTexture -= OnSetDefaultReflection; } }