├── .gitignore ├── Attributes.meta ├── Attributes ├── BaseAttribute.cs ├── BaseAttribute.cs.meta ├── ButtonAttribute.cs ├── ButtonAttribute.cs.meta ├── ColorUtils.cs ├── ColorUtils.cs.meta ├── Conditional.meta ├── Conditional │ ├── ConditionalAttribute.cs │ ├── ConditionalAttribute.cs.meta │ ├── DisableIfAttribute.cs │ ├── DisableIfAttribute.cs.meta │ ├── EnableIfAttribute.cs │ ├── EnableIfAttribute.cs.meta │ ├── HideIfAttribute.cs │ ├── HideIfAttribute.cs.meta │ ├── ShowIfAttribute.cs │ └── ShowIfAttribute.cs.meta ├── Custom.meta ├── Custom │ ├── CustomAttribute.cs │ ├── CustomAttribute.cs.meta │ ├── InlinePropertyAttribute.cs │ ├── InlinePropertyAttribute.cs.meta │ ├── ReorderableListAttribute.cs │ └── ReorderableListAttribute.cs.meta ├── Decorators.meta ├── Decorators │ ├── BaseDecoratorAttribute.cs │ ├── BaseDecoratorAttribute.cs.meta │ ├── IDecoratorAttribute.cs │ ├── IDecoratorAttribute.cs.meta │ ├── InfoBoxAttribute.cs │ ├── InfoBoxAttribute.cs.meta │ ├── PropertySpaceAttribute.cs │ ├── PropertySpaceAttribute.cs.meta │ ├── ReadonlyAttribute.cs │ ├── ReadonlyAttribute.cs.meta │ ├── RequiredAttribute.cs │ ├── RequiredAttribute.cs.meta │ ├── TitleAttribute.cs │ └── TitleAttribute.cs.meta ├── DropdownAttribute.cs ├── DropdownAttribute.cs.meta ├── EnumFlagsAttribute.cs ├── EnumFlagsAttribute.cs.meta ├── Frigg.Core.asmdef ├── Frigg.Core.asmdef.meta ├── Groups.meta ├── Groups │ ├── BaseGroupAttribute.cs │ ├── BaseGroupAttribute.cs.meta │ ├── HorizontalGroupAttribute.cs │ ├── HorizontalGroupAttribute.cs.meta │ ├── IGroupAttribute.cs │ ├── IGroupAttribute.cs.meta │ ├── VerticalGroupAttribute.cs │ └── VerticalGroupAttribute.cs.meta ├── IAttribute.cs ├── IAttribute.cs.meta ├── Meta.meta └── Meta │ ├── DisplayAsString.cs │ ├── DisplayAsString.cs.meta │ ├── HideLabelAttribute.cs │ ├── HideLabelAttribute.cs.meta │ ├── HideMonoScriptAttribute.cs │ ├── HideMonoScriptAttribute.cs.meta │ ├── LabelText.cs │ ├── LabelText.cs.meta │ ├── ListDrawerSettingsAttribute.cs │ ├── ListDrawerSettingsAttribute.cs.meta │ ├── OnValueChangedAttribute.cs │ ├── OnValueChangedAttribute.cs.meta │ ├── OrderAttribute.cs │ ├── OrderAttribute.cs.meta │ ├── PropertyTooltipAttribute.cs │ ├── PropertyTooltipAttribute.cs.meta │ ├── ShowInInspectorAttribute.cs │ └── ShowInInspectorAttribute.cs.meta ├── Editor.meta ├── Editor ├── DecoratorDrawers.meta ├── DecoratorDrawers │ ├── InfoBoxDecoratorDrawer.cs │ ├── InfoBoxDecoratorDrawer.cs.meta │ ├── PropertySpaceDecoratorDrawer.cs │ ├── PropertySpaceDecoratorDrawer.cs.meta │ ├── RequiredDecoratorDrawer.cs │ ├── RequiredDecoratorDrawer.cs.meta │ ├── TitleDecoratorDrawer.cs │ ├── TitleDecoratorDrawer.cs.meta │ ├── UnityHeaderDecoratorDrawer.cs │ ├── UnityHeaderDecoratorDrawer.cs.meta │ ├── UnitySpaceDecoratorDrawer.cs │ └── UnitySpaceDecoratorDrawer.cs.meta ├── DrawersQueue.cs ├── DrawersQueue.cs.meta ├── EditorData.cs ├── EditorData.cs.meta ├── Frigg.Editor.asmdef ├── Frigg.Editor.asmdef.meta ├── FriggDecoratorDrawer.cs ├── FriggDecoratorDrawer.cs.meta ├── FriggDrawer.cs ├── FriggDrawer.cs.meta ├── FriggInspector.cs ├── FriggInspector.cs.meta ├── FriggProperty.cs ├── FriggProperty.cs.meta ├── FriggPropertyDrawer.cs ├── FriggPropertyDrawer.cs.meta ├── Layouts.meta ├── Layouts │ ├── HorizontalLayout.cs │ ├── HorizontalLayout.cs.meta │ ├── Layout.cs │ ├── Layout.cs.meta │ ├── LayoutElement.cs │ ├── LayoutElement.cs.meta │ ├── VerticalLayout.cs │ └── VerticalLayout.cs.meta ├── PropertyCollection.cs ├── PropertyCollection.cs.meta ├── PropertyDrawers.meta ├── PropertyDrawers │ ├── BaseDrawer.cs │ ├── BaseDrawer.cs.meta │ ├── BaseGroupDrawer.cs │ ├── BaseGroupDrawer.cs.meta │ ├── BuiltIn.meta │ ├── BuiltIn │ │ ├── BoolDrawer.cs │ │ ├── BoolDrawer.cs.meta │ │ ├── ColorDrawer.cs │ │ ├── ColorDrawer.cs.meta │ │ ├── CurveDrawer.cs │ │ ├── CurveDrawer.cs.meta │ │ ├── DoubleDrawer.cs │ │ ├── DoubleDrawer.cs.meta │ │ ├── EnumDrawer.cs │ │ ├── EnumDrawer.cs.meta │ │ ├── FloatDrawer.cs │ │ ├── FloatDrawer.cs.meta │ │ ├── GradientDrawer.cs │ │ ├── GradientDrawer.cs.meta │ │ ├── IntegerDrawer.cs │ │ ├── IntegerDrawer.cs.meta │ │ ├── LongDrawer.cs │ │ ├── LongDrawer.cs.meta │ │ ├── ObjectDrawer.cs │ │ ├── ObjectDrawer.cs.meta │ │ ├── RectDrawer.cs │ │ ├── RectDrawer.cs.meta │ │ ├── StringDrawer.cs │ │ ├── StringDrawer.cs.meta │ │ ├── Vector2Drawer.cs │ │ ├── Vector2Drawer.cs.meta │ │ ├── Vector3Drawer.cs │ │ ├── Vector3Drawer.cs.meta │ │ ├── Vector4Drawer.cs │ │ └── Vector4Drawer.cs.meta │ ├── ButtonDrawer.cs │ ├── ButtonDrawer.cs.meta │ ├── DrawerUtils.cs │ ├── DrawerUtils.cs.meta │ ├── DropdownDrawer.cs │ ├── DropdownDrawer.cs.meta │ ├── EnumFlagsDrawer.cs │ ├── EnumFlagsDrawer.cs.meta │ ├── FoldoutPropertyDrawer.cs │ ├── FoldoutPropertyDrawer.cs.meta │ ├── InlinePropertyDrawer.cs │ ├── InlinePropertyDrawer.cs.meta │ ├── ReadonlyDecoratorDrawer.cs │ ├── ReadonlyDecoratorDrawer.cs.meta │ ├── ReorderableListDrawer.cs │ └── ReorderableListDrawer.cs.meta ├── PropertyMeta.cs ├── PropertyMeta.cs.meta ├── PropertyTree.cs ├── PropertyTree.cs.meta ├── PropertyValidators.meta ├── PropertyValue.cs ├── PropertyValue.cs.meta ├── Utils.meta └── Utils │ ├── CoreUtilities.cs │ ├── CoreUtilities.cs.meta │ ├── DropdownList.cs │ ├── DropdownList.cs.meta │ ├── GuiUtilities.cs │ ├── GuiUtilities.cs.meta │ ├── PropertyExtensions.cs │ ├── PropertyExtensions.cs.meta │ ├── StoredBoolValue.cs │ └── StoredBoolValue.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── Tests.meta ├── Tests ├── BuiltInTest.cs ├── BuiltInTest.cs.meta ├── ButtonBehaviour.cs ├── ButtonBehaviour.cs.meta ├── DropdownBehaviour.cs ├── DropdownBehaviour.cs.meta ├── EnumFlagsBehaviour.cs ├── EnumFlagsBehaviour.cs.meta ├── Frigg.Tests.asmdef ├── Frigg.Tests.asmdef.meta ├── HideLabelBehaviour.cs ├── HideLabelBehaviour.cs.meta ├── HideMonoScriptBehaviour.cs ├── HideMonoScriptBehaviour.cs.meta ├── IListNoAttrBehaviour.cs ├── IListNoAttrBehaviour.cs.meta ├── InfoBoxBehaviour.cs ├── InfoBoxBehaviour.cs.meta ├── InlinePropertyBehaviour.cs ├── InlinePropertyBehaviour.cs.meta ├── ListDrawerSettingsBehaviour.cs ├── ListDrawerSettingsBehaviour.cs.meta ├── OnValueChangedBehaviour.cs ├── OnValueChangedBehaviour.cs.meta ├── OrderBehaviour.cs ├── OrderBehaviour.cs.meta ├── PropertySpaceBehaviour.cs ├── PropertySpaceBehaviour.cs.meta ├── PropertyTooltipBehaviour.cs ├── PropertyTooltipBehaviour.cs.meta ├── ReadOnlyBehaviour.cs ├── ReadOnlyBehaviour.cs.meta ├── ReorderableListBehaviour.cs ├── ReorderableListBehaviour.cs.meta ├── RequiredBehaviour.cs ├── RequiredBehaviour.cs.meta ├── ShowInInspectorBehaviour.cs ├── ShowInInspectorBehaviour.cs.meta ├── TestMonoObject.cs ├── TestMonoObject.cs.meta ├── TitleBehaviour.cs ├── TitleBehaviour.cs.meta ├── ValidatorBehaviour.cs └── ValidatorBehaviour.cs.meta ├── package.json └── package.json.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/.gitignore -------------------------------------------------------------------------------- /Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes.meta -------------------------------------------------------------------------------- /Attributes/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/BaseAttribute.cs -------------------------------------------------------------------------------- /Attributes/BaseAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/BaseAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/ButtonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/ButtonAttribute.cs -------------------------------------------------------------------------------- /Attributes/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/ButtonAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/ColorUtils.cs -------------------------------------------------------------------------------- /Attributes/ColorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/ColorUtils.cs.meta -------------------------------------------------------------------------------- /Attributes/Conditional.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional.meta -------------------------------------------------------------------------------- /Attributes/Conditional/ConditionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/ConditionalAttribute.cs -------------------------------------------------------------------------------- /Attributes/Conditional/ConditionalAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/ConditionalAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Conditional/DisableIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/DisableIfAttribute.cs -------------------------------------------------------------------------------- /Attributes/Conditional/DisableIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/DisableIfAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Conditional/EnableIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/EnableIfAttribute.cs -------------------------------------------------------------------------------- /Attributes/Conditional/EnableIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/EnableIfAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Conditional/HideIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/HideIfAttribute.cs -------------------------------------------------------------------------------- /Attributes/Conditional/HideIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/HideIfAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Conditional/ShowIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/ShowIfAttribute.cs -------------------------------------------------------------------------------- /Attributes/Conditional/ShowIfAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Conditional/ShowIfAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Custom.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom.meta -------------------------------------------------------------------------------- /Attributes/Custom/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/CustomAttribute.cs -------------------------------------------------------------------------------- /Attributes/Custom/CustomAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/CustomAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Custom/InlinePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/InlinePropertyAttribute.cs -------------------------------------------------------------------------------- /Attributes/Custom/InlinePropertyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/InlinePropertyAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Custom/ReorderableListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/ReorderableListAttribute.cs -------------------------------------------------------------------------------- /Attributes/Custom/ReorderableListAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Custom/ReorderableListAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators.meta -------------------------------------------------------------------------------- /Attributes/Decorators/BaseDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/BaseDecoratorAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/BaseDecoratorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/BaseDecoratorAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/IDecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/IDecoratorAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/IDecoratorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/IDecoratorAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/InfoBoxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/InfoBoxAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/InfoBoxAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/InfoBoxAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/PropertySpaceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/PropertySpaceAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/PropertySpaceAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/PropertySpaceAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/ReadonlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/ReadonlyAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/ReadonlyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/ReadonlyAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/RequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/RequiredAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/RequiredAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/RequiredAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Decorators/TitleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/TitleAttribute.cs -------------------------------------------------------------------------------- /Attributes/Decorators/TitleAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Decorators/TitleAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/DropdownAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/DropdownAttribute.cs -------------------------------------------------------------------------------- /Attributes/DropdownAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/DropdownAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/EnumFlagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/EnumFlagsAttribute.cs -------------------------------------------------------------------------------- /Attributes/EnumFlagsAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/EnumFlagsAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Frigg.Core.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Frigg.Core.asmdef -------------------------------------------------------------------------------- /Attributes/Frigg.Core.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Frigg.Core.asmdef.meta -------------------------------------------------------------------------------- /Attributes/Groups.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups.meta -------------------------------------------------------------------------------- /Attributes/Groups/BaseGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/BaseGroupAttribute.cs -------------------------------------------------------------------------------- /Attributes/Groups/BaseGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/BaseGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Groups/HorizontalGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/HorizontalGroupAttribute.cs -------------------------------------------------------------------------------- /Attributes/Groups/HorizontalGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/HorizontalGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Groups/IGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/IGroupAttribute.cs -------------------------------------------------------------------------------- /Attributes/Groups/IGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/IGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Groups/VerticalGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/VerticalGroupAttribute.cs -------------------------------------------------------------------------------- /Attributes/Groups/VerticalGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Groups/VerticalGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/IAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/IAttribute.cs -------------------------------------------------------------------------------- /Attributes/IAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/IAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta.meta -------------------------------------------------------------------------------- /Attributes/Meta/DisplayAsString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/DisplayAsString.cs -------------------------------------------------------------------------------- /Attributes/Meta/DisplayAsString.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/DisplayAsString.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/HideLabelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/HideLabelAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/HideLabelAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/HideLabelAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/HideMonoScriptAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/HideMonoScriptAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/HideMonoScriptAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/HideMonoScriptAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/LabelText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/LabelText.cs -------------------------------------------------------------------------------- /Attributes/Meta/LabelText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/LabelText.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/ListDrawerSettingsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/ListDrawerSettingsAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/ListDrawerSettingsAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/ListDrawerSettingsAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/OnValueChangedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/OnValueChangedAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/OnValueChangedAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/OnValueChangedAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/OrderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/OrderAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/OrderAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/OrderAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/PropertyTooltipAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/PropertyTooltipAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/PropertyTooltipAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/PropertyTooltipAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/Meta/ShowInInspectorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/ShowInInspectorAttribute.cs -------------------------------------------------------------------------------- /Attributes/Meta/ShowInInspectorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Attributes/Meta/ShowInInspectorAttribute.cs.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/InfoBoxDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/PropertySpaceDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/PropertySpaceDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/PropertySpaceDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/PropertySpaceDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/RequiredDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/RequiredDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/RequiredDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/RequiredDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/TitleDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/TitleDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/TitleDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/TitleDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/UnityHeaderDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/UnityHeaderDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/UnityHeaderDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/UnityHeaderDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/UnitySpaceDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/UnitySpaceDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/DecoratorDrawers/UnitySpaceDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DecoratorDrawers/UnitySpaceDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/DrawersQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DrawersQueue.cs -------------------------------------------------------------------------------- /Editor/DrawersQueue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/DrawersQueue.cs.meta -------------------------------------------------------------------------------- /Editor/EditorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/EditorData.cs -------------------------------------------------------------------------------- /Editor/EditorData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/EditorData.cs.meta -------------------------------------------------------------------------------- /Editor/Frigg.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Frigg.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Frigg.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Frigg.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/FriggDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/FriggDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/FriggDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggDrawer.cs -------------------------------------------------------------------------------- /Editor/FriggDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/FriggInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggInspector.cs -------------------------------------------------------------------------------- /Editor/FriggInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggInspector.cs.meta -------------------------------------------------------------------------------- /Editor/FriggProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggProperty.cs -------------------------------------------------------------------------------- /Editor/FriggProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggProperty.cs.meta -------------------------------------------------------------------------------- /Editor/FriggPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/FriggPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/FriggPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Layouts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts.meta -------------------------------------------------------------------------------- /Editor/Layouts/HorizontalLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/HorizontalLayout.cs -------------------------------------------------------------------------------- /Editor/Layouts/HorizontalLayout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/HorizontalLayout.cs.meta -------------------------------------------------------------------------------- /Editor/Layouts/Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/Layout.cs -------------------------------------------------------------------------------- /Editor/Layouts/Layout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/Layout.cs.meta -------------------------------------------------------------------------------- /Editor/Layouts/LayoutElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/LayoutElement.cs -------------------------------------------------------------------------------- /Editor/Layouts/LayoutElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/LayoutElement.cs.meta -------------------------------------------------------------------------------- /Editor/Layouts/VerticalLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/VerticalLayout.cs -------------------------------------------------------------------------------- /Editor/Layouts/VerticalLayout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Layouts/VerticalLayout.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyCollection.cs -------------------------------------------------------------------------------- /Editor/PropertyCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyCollection.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BaseDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BaseDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BaseDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BaseDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BaseGroupDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BaseGroupDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BaseGroupDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BaseGroupDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/BoolDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/BoolDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/BoolDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/BoolDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/ColorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/ColorDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/ColorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/ColorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/CurveDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/CurveDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/CurveDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/CurveDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/DoubleDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/DoubleDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/DoubleDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/DoubleDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/EnumDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/EnumDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/EnumDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/EnumDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/FloatDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/FloatDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/FloatDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/FloatDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/GradientDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/GradientDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/GradientDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/GradientDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/IntegerDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/IntegerDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/IntegerDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/IntegerDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/LongDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/LongDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/LongDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/LongDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/ObjectDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/ObjectDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/ObjectDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/ObjectDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/RectDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/RectDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/RectDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/RectDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/StringDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/StringDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/StringDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/StringDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector2Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector2Drawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector2Drawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector2Drawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector3Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector3Drawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector3Drawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector3Drawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector4Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector4Drawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/BuiltIn/Vector4Drawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/BuiltIn/Vector4Drawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ButtonDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/ButtonDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ButtonDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5dd4abce39b4283a813213c0357b0bd 3 | timeCreated: 1636020790 -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DrawerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/DrawerUtils.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DrawerUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/DrawerUtils.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DropdownDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/DropdownDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/DropdownDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/DropdownDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/EnumFlagsDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/EnumFlagsDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/EnumFlagsDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/EnumFlagsDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/FoldoutPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/FoldoutPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/FoldoutPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/FoldoutPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/InlinePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/InlinePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/InlinePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/InlinePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReadonlyDecoratorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/ReadonlyDecoratorDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReadonlyDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/ReadonlyDecoratorDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReorderableListDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/ReorderableListDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawers/ReorderableListDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyDrawers/ReorderableListDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyMeta.cs -------------------------------------------------------------------------------- /Editor/PropertyMeta.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyMeta.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyTree.cs -------------------------------------------------------------------------------- /Editor/PropertyTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyTree.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyValidators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyValidators.meta -------------------------------------------------------------------------------- /Editor/PropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyValue.cs -------------------------------------------------------------------------------- /Editor/PropertyValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/PropertyValue.cs.meta -------------------------------------------------------------------------------- /Editor/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils.meta -------------------------------------------------------------------------------- /Editor/Utils/CoreUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/CoreUtilities.cs -------------------------------------------------------------------------------- /Editor/Utils/CoreUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/CoreUtilities.cs.meta -------------------------------------------------------------------------------- /Editor/Utils/DropdownList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/DropdownList.cs -------------------------------------------------------------------------------- /Editor/Utils/DropdownList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/DropdownList.cs.meta -------------------------------------------------------------------------------- /Editor/Utils/GuiUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/GuiUtilities.cs -------------------------------------------------------------------------------- /Editor/Utils/GuiUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/GuiUtilities.cs.meta -------------------------------------------------------------------------------- /Editor/Utils/PropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/PropertyExtensions.cs -------------------------------------------------------------------------------- /Editor/Utils/PropertyExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/PropertyExtensions.cs.meta -------------------------------------------------------------------------------- /Editor/Utils/StoredBoolValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/StoredBoolValue.cs -------------------------------------------------------------------------------- /Editor/Utils/StoredBoolValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Editor/Utils/StoredBoolValue.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests.meta -------------------------------------------------------------------------------- /Tests/BuiltInTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/BuiltInTest.cs -------------------------------------------------------------------------------- /Tests/BuiltInTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/BuiltInTest.cs.meta -------------------------------------------------------------------------------- /Tests/ButtonBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ButtonBehaviour.cs -------------------------------------------------------------------------------- /Tests/ButtonBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ButtonBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/DropdownBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/DropdownBehaviour.cs -------------------------------------------------------------------------------- /Tests/DropdownBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/DropdownBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/EnumFlagsBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/EnumFlagsBehaviour.cs -------------------------------------------------------------------------------- /Tests/EnumFlagsBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/EnumFlagsBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/Frigg.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/Frigg.Tests.asmdef -------------------------------------------------------------------------------- /Tests/Frigg.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/Frigg.Tests.asmdef.meta -------------------------------------------------------------------------------- /Tests/HideLabelBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/HideLabelBehaviour.cs -------------------------------------------------------------------------------- /Tests/HideLabelBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/HideLabelBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/HideMonoScriptBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/HideMonoScriptBehaviour.cs -------------------------------------------------------------------------------- /Tests/HideMonoScriptBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/HideMonoScriptBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/IListNoAttrBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/IListNoAttrBehaviour.cs -------------------------------------------------------------------------------- /Tests/IListNoAttrBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/IListNoAttrBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/InfoBoxBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/InfoBoxBehaviour.cs -------------------------------------------------------------------------------- /Tests/InfoBoxBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/InfoBoxBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/InlinePropertyBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/InlinePropertyBehaviour.cs -------------------------------------------------------------------------------- /Tests/InlinePropertyBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/InlinePropertyBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/ListDrawerSettingsBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ListDrawerSettingsBehaviour.cs -------------------------------------------------------------------------------- /Tests/ListDrawerSettingsBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ListDrawerSettingsBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/OnValueChangedBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/OnValueChangedBehaviour.cs -------------------------------------------------------------------------------- /Tests/OnValueChangedBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/OnValueChangedBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/OrderBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/OrderBehaviour.cs -------------------------------------------------------------------------------- /Tests/OrderBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/OrderBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/PropertySpaceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/PropertySpaceBehaviour.cs -------------------------------------------------------------------------------- /Tests/PropertySpaceBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/PropertySpaceBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/PropertyTooltipBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/PropertyTooltipBehaviour.cs -------------------------------------------------------------------------------- /Tests/PropertyTooltipBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/PropertyTooltipBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/ReadOnlyBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ReadOnlyBehaviour.cs -------------------------------------------------------------------------------- /Tests/ReadOnlyBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ReadOnlyBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/ReorderableListBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ReorderableListBehaviour.cs -------------------------------------------------------------------------------- /Tests/ReorderableListBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ReorderableListBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/RequiredBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/RequiredBehaviour.cs -------------------------------------------------------------------------------- /Tests/RequiredBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/RequiredBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/ShowInInspectorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ShowInInspectorBehaviour.cs -------------------------------------------------------------------------------- /Tests/ShowInInspectorBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ShowInInspectorBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/TestMonoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/TestMonoObject.cs -------------------------------------------------------------------------------- /Tests/TestMonoObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/TestMonoObject.cs.meta -------------------------------------------------------------------------------- /Tests/TitleBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/TitleBehaviour.cs -------------------------------------------------------------------------------- /Tests/TitleBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/TitleBehaviour.cs.meta -------------------------------------------------------------------------------- /Tests/ValidatorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ValidatorBehaviour.cs -------------------------------------------------------------------------------- /Tests/ValidatorBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/Tests/ValidatorBehaviour.cs.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scellecs/frigg/HEAD/package.json.meta --------------------------------------------------------------------------------