-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadOnlyAttribute.cs
26 lines (23 loc) · 1.01 KB
/
ReadOnlyAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using UnityEngine;
/// <summary>
/// Display a field as read-only in the inspector.
/// CustomPropertyDrawers will not work when this attribute is used.
/// </summary>
/// <seealso cref="BeginReadOnlyInspGroupAttribute"/>
/// <seealso cref="EndReadOnlyInspGroupAttribute"/>
public class ReadOnlyInspAttribute : PropertyAttribute { }
/// <summary>
/// Display one or more fields as read-only in the inspector.
/// Use <see cref="EndReadOnlyInspGroupAttribute"/> to close the group.
/// Works with CustomPropertyDrawers.
/// </summary>
/// <seealso cref="EndReadOnlyInspGroupAttribute"/>
/// <seealso cref="ReadOnlyInspAttribute"/>
public class BeginReadOnlyInspGroupAttribute : PropertyAttribute { }
/// <summary>
/// Use with <see cref="BeginReadOnlyInspGroupAttribute"/>.
/// Close the read-only group and resume editable fields.
/// </summary>
/// <seealso cref="BeginReadOnlyInspGroupAttribute"/>
/// <seealso cref="ReadOnlyInspAttribute"/>
public class EndReadOnlyInspGroupAttribute : PropertyAttribute { }