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

            if (isActiveAndEnabled)
            {
                ReflectionSystem.RegisterProbe(this);
            }
        }
 void OnDisable()
 {
     ReflectionSystem.UnregisterProbe(this);
 }