├── Core ├── DrawerAttributes.meta ├── DrawerAttributes │ ├── AllowNestingAttribute.cs │ ├── AllowNestingAttribute.cs.meta │ ├── CurveRangeAttribute.cs │ ├── CurveRangeAttribute.cs.meta │ ├── DrawerAttribute.cs │ ├── DrawerAttribute.cs.meta │ ├── DropdownAttribute.cs │ ├── DropdownAttribute.cs.meta │ ├── EnumFlagsAttribute.cs │ ├── EnumFlagsAttribute.cs.meta │ ├── HorizontalLineAttribute.cs │ ├── HorizontalLineAttribute.cs.meta │ ├── InfoBoxAttribute.cs │ ├── InfoBoxAttribute.cs.meta │ ├── InputAxisAttribute.cs │ ├── InputAxisAttribute.cs.meta │ ├── MinMaxSliderAttribute.cs │ ├── MinMaxSliderAttribute.cs.meta │ ├── ProgressBarAttribute.cs │ ├── ProgressBarAttribute.cs.meta │ ├── ReadOnlyAttribute.cs │ ├── ReadOnlyAttribute.cs.meta │ ├── ResizableTextAreaAttribute.cs │ ├── ResizableTextAreaAttribute.cs.meta │ ├── SceneAttribute.cs │ ├── SceneAttribute.cs.meta │ ├── ShowAssetPreviewAttribute.cs │ └── ShowAssetPreviewAttribute.cs.meta ├── DrawerAttributes_SpecialCase.meta ├── DrawerAttributes_SpecialCase │ ├── ButtonAttribute.cs │ ├── ButtonAttribute.cs.meta │ ├── ReorderableListAttribute.cs │ ├── ReorderableListAttribute.cs.meta │ ├── ShowNativePropertyAttribute.cs │ ├── ShowNativePropertyAttribute.cs.meta │ ├── ShowNonSerializedFieldAttribute.cs │ ├── ShowNonSerializedFieldAttribute.cs.meta │ ├── SpecialCaseDrawerAttribute.cs │ └── SpecialCaseDrawerAttribute.cs.meta ├── INaughtyAttribute.cs ├── INaughtyAttribute.cs.meta ├── MetaAttributes.meta ├── MetaAttributes │ ├── BoxGroupAttribute.cs │ ├── BoxGroupAttribute.cs.meta │ ├── DisableIfAttribute.cs │ ├── DisableIfAttribute.cs.meta │ ├── EnableIfAttribute.cs │ ├── EnableIfAttribute.cs.meta │ ├── EnableIfAttributeBase.cs │ ├── EnableIfAttributeBase.cs.meta │ ├── HideIfAttribute.cs │ ├── HideIfAttribute.cs.meta │ ├── MetaAttribute.cs │ ├── MetaAttribute.cs.meta │ ├── OnValueChangedAttribute.cs │ ├── OnValueChangedAttribute.cs.meta │ ├── ShortNameAttribute.cs │ ├── ShortNameAttribute.cs.meta │ ├── ShowIfAttribute.cs │ ├── ShowIfAttribute.cs.meta │ ├── ShowIfAttributeBase.cs │ └── ShowIfAttributeBase.cs.meta ├── NaughtyAttributes.Core.asmdef ├── NaughtyAttributes.Core.asmdef.meta ├── Utility.meta ├── Utility │ ├── EColor.cs │ ├── EColor.cs.meta │ ├── EConditionOperator.cs │ └── EConditionOperator.cs.meta ├── ValidatorAttributes.meta └── ValidatorAttributes │ ├── MaxValueAttribute.cs │ ├── MaxValueAttribute.cs.meta │ ├── MinValueAttribute.cs │ ├── MinValueAttribute.cs.meta │ ├── RequiredAttribute.cs │ ├── RequiredAttribute.cs.meta │ ├── ValidateInputAttribute.cs │ ├── ValidateInputAttribute.cs.meta │ ├── ValidatorAttribute.cs │ └── ValidatorAttribute.cs.meta ├── Documentation ├── BoxGroup.png ├── Button.png ├── CurveRange.png ├── DefinedValues.png ├── EnableIf_Inspector.gif ├── EnumFlags.png ├── HorizontalLine.png ├── InfoBox.png ├── InputAxis.png ├── MinMaxSlider.png ├── ProgressBar.png ├── ReadOnly.png ├── ReorderableList_Inspector.gif ├── Required.png ├── ResizableTextArea.png ├── Scene.png ├── ShortName.png ├── ShowAssetPreview.png ├── ShowIf_Inspector.gif ├── ShowNativeProperty.png ├── ShowNonSerializedField.png ├── Tag-Layer-SpriteLayer.png └── ValidateInput.png ├── Editor ├── DecoratorDrawers.meta ├── DecoratorDrawers │ ├── HorizontalLineDecoratorDrawer.cs │ ├── HorizontalLineDecoratorDrawer.cs.meta │ ├── InfoBoxDecoratorDrawer.cs │ └── InfoBoxDecoratorDrawer.cs.meta ├── DefinedValuesAttribute.cs ├── DefinedValuesAttribute.cs.meta ├── LayerAttribute.cs ├── LayerAttribute.cs.meta ├── NaughtyAttributes.Editor.asmdef ├── NaughtyAttributes.Editor.asmdef.meta ├── NaughtyInspector.cs ├── NaughtyInspector.cs.meta ├── PropertyDrawers.meta ├── PropertyDrawers │ ├── AllowNestingPropertyDrawer.cs │ ├── AllowNestingPropertyDrawer.cs.meta │ ├── CurveRangePropertyDrawer.cs │ ├── CurveRangePropertyDrawer.cs.meta │ ├── DropdownPropertyDrawer.cs │ ├── DropdownPropertyDrawer.cs.meta │ ├── EnumFlagsPropertyDrawer.cs │ ├── EnumFlagsPropertyDrawer.cs.meta │ ├── InputAxisPropertyDrawer.cs │ ├── InputAxisPropertyDrawer.cs.meta │ ├── MinMaxSliderPropertyDrawer.cs │ ├── MinMaxSliderPropertyDrawer.cs.meta │ ├── ProgressBarPropertyDrawer.cs │ ├── ProgressBarPropertyDrawer.cs.meta │ ├── PropertyDrawerBase.cs │ ├── PropertyDrawerBase.cs.meta │ ├── ReadOnlyPropertyDrawer.cs │ ├── ReadOnlyPropertyDrawer.cs.meta │ ├── ResizableTextAreaPropertyDrawer.cs │ ├── ResizableTextAreaPropertyDrawer.cs.meta │ ├── ScenePropertyDrawer.cs │ ├── ScenePropertyDrawer.cs.meta │ ├── ShowAssetPreviewPropertyDrawer.cs │ └── ShowAssetPreviewPropertyDrawer.cs.meta ├── PropertyDrawers_SpecialCase.meta ├── PropertyDrawers_SpecialCase │ ├── ReorderableListPropertyDrawer.cs │ ├── ReorderableListPropertyDrawer.cs.meta │ ├── SpecialCasePropertyDrawerBase.cs │ └── SpecialCasePropertyDrawerBase.cs.meta ├── PropertyValidators.meta ├── PropertyValidators │ ├── MaxValuePropertyValidator.cs │ ├── MaxValuePropertyValidator.cs.meta │ ├── MinValuePropertyValidator.cs │ ├── MinValuePropertyValidator.cs.meta │ ├── PropertyValidatorBase.cs │ ├── PropertyValidatorBase.cs.meta │ ├── RequiredPropertyValidator.cs │ ├── RequiredPropertyValidator.cs.meta │ ├── ValidateInputPropertyValidator.cs │ └── ValidateInputPropertyValidator.cs.meta ├── RequireLayerAttribute.cs ├── RequireLayerAttribute.cs.meta ├── SpriteLayerAttribute.cs ├── SpriteLayerAttribute.cs.meta ├── TagAttribute.cs ├── TagAttribute.cs.meta ├── Utility.meta └── Utility │ ├── ButtonUtility.cs │ ├── ButtonUtility.cs.meta │ ├── DebugColor.cs │ ├── DebugColor.cs.meta │ ├── NaughtyEditorGUI.cs │ ├── NaughtyEditorGUI.cs.meta │ ├── PropertyUtility.cs │ ├── PropertyUtility.cs.meta │ ├── ReflectionUtility.cs │ └── ReflectionUtility.cs.meta └── README.md /Core/DrawerAttributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/AllowNestingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/AllowNestingAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/AllowNestingAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/AllowNestingAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/CurveRangeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/CurveRangeAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/CurveRangeAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/CurveRangeAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/DrawerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/DrawerAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/DrawerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/DrawerAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/DropdownAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/DropdownAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/DropdownAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/DropdownAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/EnumFlagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/EnumFlagsAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/EnumFlagsAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/EnumFlagsAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/HorizontalLineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/HorizontalLineAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/HorizontalLineAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/HorizontalLineAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/InfoBoxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/InfoBoxAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/InfoBoxAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/InfoBoxAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/InputAxisAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/InputAxisAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/InputAxisAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/InputAxisAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/MinMaxSliderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/MinMaxSliderAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/MinMaxSliderAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/MinMaxSliderAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/ProgressBarAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ProgressBarAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/ProgressBarAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ProgressBarAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ReadOnlyAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/ReadOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ReadOnlyAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/ResizableTextAreaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ResizableTextAreaAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/ResizableTextAreaAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ResizableTextAreaAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/SceneAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/SceneAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/SceneAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/SceneAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes/ShowAssetPreviewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ShowAssetPreviewAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes/ShowAssetPreviewAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes/ShowAssetPreviewAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ButtonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ButtonAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ButtonAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ReorderableListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ReorderableListAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ReorderableListAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ReorderableListAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ShowNativePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ShowNativePropertyAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ShowNativePropertyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ShowNativePropertyAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ShowNonSerializedFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ShowNonSerializedFieldAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/ShowNonSerializedFieldAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/ShowNonSerializedFieldAttribute.cs.meta -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/SpecialCaseDrawerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/SpecialCaseDrawerAttribute.cs -------------------------------------------------------------------------------- /Core/DrawerAttributes_SpecialCase/SpecialCaseDrawerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/DrawerAttributes_SpecialCase/SpecialCaseDrawerAttribute.cs.meta -------------------------------------------------------------------------------- /Core/INaughtyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/INaughtyAttribute.cs -------------------------------------------------------------------------------- /Core/INaughtyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/INaughtyAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/BoxGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/BoxGroupAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/BoxGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/BoxGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/DisableIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/DisableIfAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/DisableIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/DisableIfAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/EnableIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/EnableIfAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/EnableIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/EnableIfAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/EnableIfAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/EnableIfAttributeBase.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/EnableIfAttributeBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/EnableIfAttributeBase.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/HideIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/HideIfAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/HideIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/HideIfAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/MetaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/MetaAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/MetaAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/MetaAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/OnValueChangedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/OnValueChangedAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/OnValueChangedAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/OnValueChangedAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/ShortNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShortNameAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/ShortNameAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShortNameAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/ShowIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShowIfAttribute.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/ShowIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShowIfAttribute.cs.meta -------------------------------------------------------------------------------- /Core/MetaAttributes/ShowIfAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShowIfAttributeBase.cs -------------------------------------------------------------------------------- /Core/MetaAttributes/ShowIfAttributeBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/MetaAttributes/ShowIfAttributeBase.cs.meta -------------------------------------------------------------------------------- /Core/NaughtyAttributes.Core.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/NaughtyAttributes.Core.asmdef -------------------------------------------------------------------------------- /Core/NaughtyAttributes.Core.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/NaughtyAttributes.Core.asmdef.meta -------------------------------------------------------------------------------- /Core/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/Utility.meta -------------------------------------------------------------------------------- /Core/Utility/EColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/Utility/EColor.cs -------------------------------------------------------------------------------- /Core/Utility/EColor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/Utility/EColor.cs.meta -------------------------------------------------------------------------------- /Core/Utility/EConditionOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/Utility/EConditionOperator.cs -------------------------------------------------------------------------------- /Core/Utility/EConditionOperator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/Utility/EConditionOperator.cs.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes/MaxValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/MaxValueAttribute.cs -------------------------------------------------------------------------------- /Core/ValidatorAttributes/MaxValueAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/MaxValueAttribute.cs.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes/MinValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/MinValueAttribute.cs -------------------------------------------------------------------------------- /Core/ValidatorAttributes/MinValueAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/MinValueAttribute.cs.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes/RequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/RequiredAttribute.cs -------------------------------------------------------------------------------- /Core/ValidatorAttributes/RequiredAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/RequiredAttribute.cs.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes/ValidateInputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/ValidateInputAttribute.cs -------------------------------------------------------------------------------- /Core/ValidatorAttributes/ValidateInputAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/ValidateInputAttribute.cs.meta -------------------------------------------------------------------------------- /Core/ValidatorAttributes/ValidatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/ValidatorAttribute.cs -------------------------------------------------------------------------------- /Core/ValidatorAttributes/ValidatorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Core/ValidatorAttributes/ValidatorAttribute.cs.meta -------------------------------------------------------------------------------- /Documentation/BoxGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/BoxGroup.png -------------------------------------------------------------------------------- /Documentation/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/Button.png -------------------------------------------------------------------------------- /Documentation/CurveRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/CurveRange.png -------------------------------------------------------------------------------- /Documentation/DefinedValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/DefinedValues.png -------------------------------------------------------------------------------- /Documentation/EnableIf_Inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/EnableIf_Inspector.gif -------------------------------------------------------------------------------- /Documentation/EnumFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/EnumFlags.png -------------------------------------------------------------------------------- /Documentation/HorizontalLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/HorizontalLine.png -------------------------------------------------------------------------------- /Documentation/InfoBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/InfoBox.png -------------------------------------------------------------------------------- /Documentation/InputAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/InputAxis.png -------------------------------------------------------------------------------- /Documentation/MinMaxSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/MinMaxSlider.png -------------------------------------------------------------------------------- /Documentation/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ProgressBar.png -------------------------------------------------------------------------------- /Documentation/ReadOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ReadOnly.png -------------------------------------------------------------------------------- /Documentation/ReorderableList_Inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ReorderableList_Inspector.gif -------------------------------------------------------------------------------- /Documentation/Required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/Required.png -------------------------------------------------------------------------------- /Documentation/ResizableTextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ResizableTextArea.png -------------------------------------------------------------------------------- /Documentation/Scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/Scene.png -------------------------------------------------------------------------------- /Documentation/ShortName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ShortName.png -------------------------------------------------------------------------------- /Documentation/ShowAssetPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ShowAssetPreview.png -------------------------------------------------------------------------------- /Documentation/ShowIf_Inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ShowIf_Inspector.gif -------------------------------------------------------------------------------- /Documentation/ShowNativeProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ShowNativeProperty.png -------------------------------------------------------------------------------- /Documentation/ShowNonSerializedField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ShowNonSerializedField.png -------------------------------------------------------------------------------- /Documentation/Tag-Layer-SpriteLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/Tag-Layer-SpriteLayer.png -------------------------------------------------------------------------------- /Documentation/ValidateInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Documentation/ValidateInput.png -------------------------------------------------------------------------------- /Editor/DecoratorDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DecoratorDrawers.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/HorizontalLineDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DecoratorDrawers/HorizontalLineDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/HorizontalLineDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DecoratorDrawers/HorizontalLineDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DefinedValuesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DefinedValuesAttribute.cs -------------------------------------------------------------------------------- /Editor/DefinedValuesAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/DefinedValuesAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/LayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/LayerAttribute.cs -------------------------------------------------------------------------------- /Editor/LayerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/LayerAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/NaughtyAttributes.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/NaughtyAttributes.Editor.asmdef -------------------------------------------------------------------------------- /Editor/NaughtyAttributes.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/NaughtyAttributes.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/NaughtyInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/NaughtyInspector.cs -------------------------------------------------------------------------------- /Editor/NaughtyInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/NaughtyInspector.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/AllowNestingPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/AllowNestingPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/AllowNestingPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/AllowNestingPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/CurveRangePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/CurveRangePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/CurveRangePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/CurveRangePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DropdownPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/DropdownPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DropdownPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/DropdownPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/EnumFlagsPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/EnumFlagsPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/EnumFlagsPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/EnumFlagsPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/InputAxisPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/InputAxisPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/InputAxisPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/InputAxisPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/MinMaxSliderPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/MinMaxSliderPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/MinMaxSliderPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/MinMaxSliderPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ProgressBarPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ProgressBarPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ProgressBarPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ProgressBarPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/PropertyDrawerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/PropertyDrawerBase.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/PropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/PropertyDrawerBase.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReadOnlyPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ReadOnlyPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReadOnlyPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ReadOnlyPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ResizableTextAreaPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ResizableTextAreaPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ResizableTextAreaPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ResizableTextAreaPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ScenePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ScenePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ScenePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ScenePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ShowAssetPreviewPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ShowAssetPreviewPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ShowAssetPreviewPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers/ShowAssetPreviewPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers_SpecialCase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers_SpecialCase.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers_SpecialCase/ReorderableListPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers_SpecialCase/ReorderableListPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers_SpecialCase/ReorderableListPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers_SpecialCase/ReorderableListPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers_SpecialCase/SpecialCasePropertyDrawerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers_SpecialCase/SpecialCasePropertyDrawerBase.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers_SpecialCase/SpecialCasePropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyDrawers_SpecialCase/SpecialCasePropertyDrawerBase.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators/MaxValuePropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/MaxValuePropertyValidator.cs -------------------------------------------------------------------------------- /Editor/PropertyValidators/MaxValuePropertyValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/MaxValuePropertyValidator.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators/MinValuePropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/MinValuePropertyValidator.cs -------------------------------------------------------------------------------- /Editor/PropertyValidators/MinValuePropertyValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/MinValuePropertyValidator.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators/PropertyValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/PropertyValidatorBase.cs -------------------------------------------------------------------------------- /Editor/PropertyValidators/PropertyValidatorBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/PropertyValidatorBase.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators/RequiredPropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/RequiredPropertyValidator.cs -------------------------------------------------------------------------------- /Editor/PropertyValidators/RequiredPropertyValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/RequiredPropertyValidator.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators/ValidateInputPropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/ValidateInputPropertyValidator.cs -------------------------------------------------------------------------------- /Editor/PropertyValidators/ValidateInputPropertyValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/PropertyValidators/ValidateInputPropertyValidator.cs.meta -------------------------------------------------------------------------------- /Editor/RequireLayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/RequireLayerAttribute.cs -------------------------------------------------------------------------------- /Editor/RequireLayerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/RequireLayerAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/SpriteLayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/SpriteLayerAttribute.cs -------------------------------------------------------------------------------- /Editor/SpriteLayerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/SpriteLayerAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/TagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/TagAttribute.cs -------------------------------------------------------------------------------- /Editor/TagAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/TagAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility.meta -------------------------------------------------------------------------------- /Editor/Utility/ButtonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/ButtonUtility.cs -------------------------------------------------------------------------------- /Editor/Utility/ButtonUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/ButtonUtility.cs.meta -------------------------------------------------------------------------------- /Editor/Utility/DebugColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/DebugColor.cs -------------------------------------------------------------------------------- /Editor/Utility/DebugColor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/DebugColor.cs.meta -------------------------------------------------------------------------------- /Editor/Utility/NaughtyEditorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/NaughtyEditorGUI.cs -------------------------------------------------------------------------------- /Editor/Utility/NaughtyEditorGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/NaughtyEditorGUI.cs.meta -------------------------------------------------------------------------------- /Editor/Utility/PropertyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/PropertyUtility.cs -------------------------------------------------------------------------------- /Editor/Utility/PropertyUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/PropertyUtility.cs.meta -------------------------------------------------------------------------------- /Editor/Utility/ReflectionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/ReflectionUtility.cs -------------------------------------------------------------------------------- /Editor/Utility/ReflectionUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/Editor/Utility/ReflectionUtility.cs.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrJARRA/EasyAttributes/HEAD/README.md --------------------------------------------------------------------------------