File tree Expand file tree Collapse file tree
Assets/Editor Toolbox/Runtime/Attributes/Toolbox Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44namespace UnityEngine
55{
6+ /// <summary>
7+ /// Use this attribute to close previously created <see cref="BeginGroupAttribute"/>.
8+ /// </summary>
69 [ AttributeUsage ( AttributeTargets . Field , AllowMultiple = true ) ]
710 [ Conditional ( "UNITY_EDITOR" ) ]
811 public class EndGroupAttribute : ToolboxDecoratorAttribute
Original file line number Diff line number Diff line change 33
44namespace UnityEngine
55{
6+ /// <summary>
7+ /// Use this attribute to close previously created <see cref="BeginHorizontalAttribute"/>.
8+ /// </summary>
69 [ AttributeUsage ( AttributeTargets . Field , AllowMultiple = false ) ]
710 [ Conditional ( "UNITY_EDITOR" ) ]
811 public class EndHorizontalAttribute : ToolboxDecoratorAttribute
Original file line number Diff line number Diff line change 33
44namespace UnityEngine
55{
6+ /// <summary>
7+ /// Use this attribute to close previously created <see cref="BeginHorizontalGroupAttribute"/>.
8+ /// </summary>
69 [ AttributeUsage ( AttributeTargets . Field , AllowMultiple = false ) ]
710 [ Conditional ( "UNITY_EDITOR" ) ]
811 public class EndHorizontalGroupAttribute : EndHorizontalAttribute
Original file line number Diff line number Diff line change @@ -12,15 +12,9 @@ public abstract class ToolboxDecoratorAttribute : ToolboxAttribute
1212 /// </summary>
1313 public int Order { get ; set ; }
1414
15- /// <summary>
16- /// Indicates if decorator should be visible only if the target property is visible.
17- /// </summary>
18- [ Obsolete ( "Feature not implemented. Decorators will be visible even if the target property is hidden." ) ]
19- public bool HideWithProperty { get ; set ; }
20-
2115 /// <summary>
2216 /// Indicates if decorator should be created independly to state of the property.
23- /// If <see cref="ApplyCondition"/> equals <see langword="true"/> it means that decorator will
17+ /// If <see cref="ApplyCondition"/> equals <see langword="true"/> it means that the decorator can be hidden/disabled same as an associated property.
2418 /// </summary>
2519 public bool ApplyCondition { get ; set ; }
2620 }
You can’t perform that action at this time.
0 commit comments