using UnityEngine;
namespace EditorAttributes
{
///
/// Attribute to disable a field when entering play mode
///
public class DisableInPlayModeAttribute : PropertyAttribute
{
///
/// Attribute to disable a field when entering play mode
///
public DisableInPlayModeAttribute()
#if UNITY_2023_3_OR_NEWER
: base(true)
#endif
{ }
}
}