void OnValidate()
        {
            ReflectionSystem.UnregisterProbe(this);

            if (isActiveAndEnabled)
            {
                ReflectionSystem.RegisterProbe(this);
            }
        }
        void OnEnable()
        {
            if (needMigrateToHDProbeChild)
            {
                MigrateToHDProbeChild();
            }
            if (needMigrateToUseInfluenceVolume)
            {
                MigrateToUseInfluenceVolume();
            }
            if (needMigrateToMergeEditors)
            {
                MigrateToMergeEditors();
            }

            ReflectionSystem.RegisterProbe(this);
        }
 void OnEnable()
 {
     ReflectionSystem.RegisterProbe(this);
 }