mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
Make attributes non sealed
This commit is contained in:
parent
ec71246cbd
commit
3c36b7b2d3
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class AssetsOnlyAttribute : Attribute
|
||||
public class AssetsOnlyAttribute : Attribute
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class ButtonAttribute : Attribute
|
||||
public class ButtonAttribute : Attribute
|
||||
{
|
||||
public ButtonAttribute()
|
||||
{
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class DropdownAttribute : Attribute
|
||||
public class DropdownAttribute : Attribute
|
||||
{
|
||||
public string Values { get; }
|
||||
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class EnumToggleButtonsAttribute : Attribute
|
||||
public class EnumToggleButtonsAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -6,7 +6,7 @@ namespace TriInspector
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method |
|
||||
AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class GUIColorAttribute : Attribute
|
||||
public class GUIColorAttribute : Attribute
|
||||
{
|
||||
public float R { get; }
|
||||
public float G { get; }
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class HideLabelAttribute : Attribute
|
||||
public class HideLabelAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage((AttributeTargets.Class | AttributeTargets.Struct))]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class HideMonoScriptAttribute : Attribute
|
||||
public class HideMonoScriptAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -3,7 +3,7 @@
|
||||
namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
public sealed class HideReferencePickerAttribute : Attribute
|
||||
public class HideReferencePickerAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class IndentAttribute : Attribute
|
||||
public class IndentAttribute : Attribute
|
||||
{
|
||||
public int Indent { get; }
|
||||
|
||||
|
@ -6,7 +6,7 @@ namespace TriInspector
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property |
|
||||
AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class InlineEditorAttribute : Attribute
|
||||
public class InlineEditorAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -6,7 +6,7 @@ namespace TriInspector
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property |
|
||||
AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class InlinePropertyAttribute : Attribute
|
||||
public class InlinePropertyAttribute : Attribute
|
||||
{
|
||||
public float LabelWidth { get; set; }
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class LabelTextAttribute : Attribute
|
||||
public class LabelTextAttribute : Attribute
|
||||
{
|
||||
public string Text { get; }
|
||||
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class LabelWidthAttribute : Attribute
|
||||
public class LabelWidthAttribute : Attribute
|
||||
{
|
||||
public float Width { get; }
|
||||
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class OnValueChangedAttribute : Attribute
|
||||
public class OnValueChangedAttribute : Attribute
|
||||
{
|
||||
public OnValueChangedAttribute(string method)
|
||||
{
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class PropertyOrderAttribute : Attribute
|
||||
public class PropertyOrderAttribute : Attribute
|
||||
{
|
||||
public int Order { get; }
|
||||
|
||||
|
@ -6,7 +6,7 @@ namespace TriInspector
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method |
|
||||
AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class PropertySpaceAttribute : Attribute
|
||||
public class PropertySpaceAttribute : Attribute
|
||||
{
|
||||
public float SpaceBefore { get; set; }
|
||||
public float SpaceAfter { get; set; }
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class PropertyTooltipAttribute : Attribute
|
||||
public class PropertyTooltipAttribute : Attribute
|
||||
{
|
||||
public string Tooltip { get; }
|
||||
|
||||
|
@ -6,7 +6,7 @@ namespace TriInspector
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property |
|
||||
AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class ReadOnlyAttribute : Attribute
|
||||
public class ReadOnlyAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class SceneAttribute : Attribute
|
||||
public class SceneAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class SceneObjectsOnlyAttribute : Attribute
|
||||
public class SceneObjectsOnlyAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class ShowDrawerChainAttribute : Attribute
|
||||
public class ShowDrawerChainAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class TableListAttribute : ListDrawerSettingsAttribute
|
||||
public class TableListAttribute : ListDrawerSettingsAttribute
|
||||
{
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class TitleAttribute : Attribute
|
||||
public class TitleAttribute : Attribute
|
||||
{
|
||||
public string Title { get; }
|
||||
public bool HorizontalLine { get; set; } = true;
|
||||
|
@ -5,7 +5,7 @@ namespace TriInspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||||
[Conditional("UNITY_EDITOR")]
|
||||
public sealed class ValidateInputAttribute : Attribute
|
||||
public class ValidateInputAttribute : Attribute
|
||||
{
|
||||
public string Method { get; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user