using UnityEngine;
namespace OmiLAXR
{
///
/// Display a field as read-only in the inspector.
/// CustomPropertyDrawers will not work when this attribute is used.
///
///
///
public class ReadOnlyAttribute : PropertyAttribute { }
///
/// Display one or more fields as read-only in the inspector.
/// Use to close the group.
/// Works with CustomPropertyDrawers.
///
///
///
public class BeginReadOnlyGroupAttribute : PropertyAttribute { }
///
/// Use with .
/// Close the read-only group and resume editable fields.
///
///
///
public class EndReadOnlyGroupAttribute : PropertyAttribute { }
}