├── .editorconfig ├── .github └── workflows │ ├── activation.yml │ ├── test.yml │ ├── upm-dev.yml │ └── upm.yml ├── .gitignore ├── .vsconfig ├── Assets ├── Editor Toolbox.meta ├── Editor Toolbox │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── ContextMenu.meta │ │ ├── ContextMenu │ │ │ ├── IContextMenuOperation.cs │ │ │ ├── IContextMenuOperation.cs.meta │ │ │ ├── Management.meta │ │ │ ├── Management │ │ │ │ ├── ToolboxContextMenuManager.cs │ │ │ │ └── ToolboxContextMenuManager.cs.meta │ │ │ ├── Operations.meta │ │ │ └── Operations │ │ │ │ ├── SerializeReference.meta │ │ │ │ └── SerializeReference │ │ │ │ ├── CopySerializeReferenceCache.cs │ │ │ │ ├── CopySerializeReferenceCache.cs.meta │ │ │ │ ├── CopySerializeReferenceOperation.cs │ │ │ │ ├── CopySerializeReferenceOperation.cs.meta │ │ │ │ ├── DuplicateSerializeReferenceArrayElementOperation.cs │ │ │ │ ├── DuplicateSerializeReferenceArrayElementOperation.cs.meta │ │ │ │ ├── PasteSerializeReferenceOperation.cs │ │ │ │ └── PasteSerializeReferenceOperation.cs.meta │ │ ├── Drawers.meta │ │ ├── Drawers │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── Comparison.meta │ │ │ │ ├── Comparison │ │ │ │ │ ├── BooleanComparer.cs │ │ │ │ │ ├── BooleanComparer.cs.meta │ │ │ │ │ ├── FloatComparer.cs │ │ │ │ │ ├── FloatComparer.cs.meta │ │ │ │ │ ├── IntegerComparer.cs │ │ │ │ │ ├── IntegerComparer.cs.meta │ │ │ │ │ ├── ObjectComparer.cs │ │ │ │ │ ├── ObjectComparer.cs.meta │ │ │ │ │ ├── StringComparer.cs │ │ │ │ │ ├── StringComparer.cs.meta │ │ │ │ │ ├── ValueComparerBase.cs │ │ │ │ │ ├── ValueComparerBase.cs.meta │ │ │ │ │ ├── ValueComparisonHelper.cs │ │ │ │ │ ├── ValueComparisonHelper.cs.meta │ │ │ │ │ ├── ValueComparisonInput.cs │ │ │ │ │ ├── ValueComparisonInput.cs.meta │ │ │ │ │ ├── ValueComparisonMethod.cs │ │ │ │ │ └── ValueComparisonMethod.cs.meta │ │ │ │ ├── ControlDataStorage.cs │ │ │ │ ├── ControlDataStorage.cs.meta │ │ │ │ ├── DrawerDataStorage.cs │ │ │ │ ├── DrawerDataStorage.cs.meta │ │ │ │ ├── DrawerDataStorageBase.cs │ │ │ │ ├── DrawerDataStorageBase.cs.meta │ │ │ │ ├── DrawerStorageManager.cs │ │ │ │ ├── DrawerStorageManager.cs.meta │ │ │ │ ├── Extraction.meta │ │ │ │ ├── Extraction │ │ │ │ │ ├── FieldValueExtractor.cs │ │ │ │ │ ├── FieldValueExtractor.cs.meta │ │ │ │ │ ├── IValueExtractor.cs │ │ │ │ │ ├── IValueExtractor.cs.meta │ │ │ │ │ ├── MethodValueExtractor.cs │ │ │ │ │ ├── MethodValueExtractor.cs.meta │ │ │ │ │ ├── PropertyValueExtractor.cs │ │ │ │ │ ├── PropertyValueExtractor.cs.meta │ │ │ │ │ ├── ValueExtractionHelper.cs │ │ │ │ │ ├── ValueExtractionHelper.cs.meta │ │ │ │ │ ├── ValueSourceType.cs │ │ │ │ │ └── ValueSourceType.cs.meta │ │ │ │ ├── PropertyDataStorage.cs │ │ │ │ └── PropertyDataStorage.cs.meta │ │ │ ├── ISerializedPropertyContext.cs │ │ │ ├── ISerializedPropertyContext.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── FolderDataDrawer.cs │ │ │ │ └── FolderDataDrawer.cs.meta │ │ │ ├── Material.meta │ │ │ ├── Material │ │ │ │ ├── BaseMaterialPropertyDrawer.cs │ │ │ │ ├── BaseMaterialPropertyDrawer.cs.meta │ │ │ │ ├── MaterialCompactTextureDrawer.cs │ │ │ │ ├── MaterialCompactTextureDrawer.cs.meta │ │ │ │ ├── MaterialConditionalDrawer.cs │ │ │ │ ├── MaterialConditionalDrawer.cs.meta │ │ │ │ ├── MaterialHelpDecorator.cs │ │ │ │ ├── MaterialHelpDecorator.cs.meta │ │ │ │ ├── MaterialHideIfToggleDrawer.cs │ │ │ │ ├── MaterialHideIfToggleDrawer.cs.meta │ │ │ │ ├── MaterialIndentDrawer.cs │ │ │ │ ├── MaterialIndentDrawer.cs.meta │ │ │ │ ├── MaterialMinMaxSliderDrawer.cs │ │ │ │ ├── MaterialMinMaxSliderDrawer.cs.meta │ │ │ │ ├── MaterialShowIfToggleDrawer.cs │ │ │ │ ├── MaterialShowIfToggleDrawer.cs.meta │ │ │ │ ├── MaterialTitleDecorator.cs │ │ │ │ ├── MaterialTitleDecorator.cs.meta │ │ │ │ ├── MaterialVector2Drawer.cs │ │ │ │ ├── MaterialVector2Drawer.cs.meta │ │ │ │ ├── MaterialVector3Drawer.cs │ │ │ │ └── MaterialVector3Drawer.cs.meta │ │ │ ├── Regular.meta │ │ │ ├── Regular │ │ │ │ ├── AnimationCurveSettingsAttributeDrawer.cs │ │ │ │ ├── AnimationCurveSettingsAttributeDrawer.cs.meta │ │ │ │ ├── AssetPreviewAttributeDrawer.cs │ │ │ │ ├── AssetPreviewAttributeDrawer.cs.meta │ │ │ │ ├── ChildObjectOnlyAttributeDrawer.cs │ │ │ │ ├── ChildObjectOnlyAttributeDrawer.cs.meta │ │ │ │ ├── ClampAttributeDrawer.cs │ │ │ │ ├── ClampAttributeDrawer.cs.meta │ │ │ │ ├── DirectoryAttributeDrawer.cs │ │ │ │ ├── DirectoryAttributeDrawer.cs.meta │ │ │ │ ├── EnumTogglesAttributeDrawer.cs │ │ │ │ ├── EnumTogglesAttributeDrawer.cs.meta │ │ │ │ ├── FormattedNumberAttributeDrawer.cs │ │ │ │ ├── FormattedNumberAttributeDrawer.cs.meta │ │ │ │ ├── HideLabelAttributeDrawer.cs │ │ │ │ ├── HideLabelAttributeDrawer.cs.meta │ │ │ │ ├── LayerAttributeDrawer.cs │ │ │ │ ├── LayerAttributeDrawer.cs.meta │ │ │ │ ├── LeftToggleAttributeDrawer.cs │ │ │ │ ├── LeftToggleAttributeDrawer.cs.meta │ │ │ │ ├── MinMaxSliderAttributeDrawer.cs │ │ │ │ ├── MinMaxSliderAttributeDrawer.cs.meta │ │ │ │ ├── NewLabelAttributeDrawer.cs │ │ │ │ ├── NewLabelAttributeDrawer.cs.meta │ │ │ │ ├── NotNullAttributeDrawer.cs │ │ │ │ ├── NotNullAttributeDrawer.cs.meta │ │ │ │ ├── NotPrefabObjectOnlyAttributeDrawer.cs │ │ │ │ ├── NotPrefabObjectOnlyAttributeDrawer.cs.meta │ │ │ │ ├── ObjectValidationDrawer.cs │ │ │ │ ├── ObjectValidationDrawer.cs.meta │ │ │ │ ├── OnValueChangedAttributeDrawer.cs │ │ │ │ ├── OnValueChangedAttributeDrawer.cs.meta │ │ │ │ ├── PasswordAttributeDrawer.cs │ │ │ │ ├── PasswordAttributeDrawer.cs.meta │ │ │ │ ├── PrefabObjectOnlyAttributeDrawer.cs │ │ │ │ ├── PrefabObjectOnlyAttributeDrawer.cs.meta │ │ │ │ ├── PresetAttributeDrawer.cs │ │ │ │ ├── PresetAttributeDrawer.cs.meta │ │ │ │ ├── ProgressBarAttributeDrawer.cs │ │ │ │ ├── ProgressBarAttributeDrawer.cs.meta │ │ │ │ ├── PropertyDrawerBase.cs │ │ │ │ ├── PropertyDrawerBase.cs.meta │ │ │ │ ├── SceneNameAttributeDrawer.cs │ │ │ │ ├── SceneNameAttributeDrawer.cs.meta │ │ │ │ ├── SceneObjectOnlyAttributeDrawer.cs │ │ │ │ ├── SceneObjectOnlyAttributeDrawer.cs.meta │ │ │ │ ├── SearchableEnumAttributeDrawer.cs │ │ │ │ ├── SearchableEnumAttributeDrawer.cs.meta │ │ │ │ ├── SerializedDateTimeDrawer.cs │ │ │ │ ├── SerializedDateTimeDrawer.cs.meta │ │ │ │ ├── SerializedDirectoryDrawer.cs │ │ │ │ ├── SerializedDirectoryDrawer.cs.meta │ │ │ │ ├── SerializedSceneDrawer.cs │ │ │ │ ├── SerializedSceneDrawer.cs.meta │ │ │ │ ├── SerializedTypeDrawer.cs │ │ │ │ ├── SerializedTypeDrawer.cs.meta │ │ │ │ ├── SuffixAttributeDrawer.cs │ │ │ │ ├── SuffixAttributeDrawer.cs.meta │ │ │ │ ├── TagSelectorAttributeDrawer.cs │ │ │ │ └── TagSelectorAttributeDrawer.cs.meta │ │ │ ├── Toolbox.meta │ │ │ ├── Toolbox │ │ │ │ ├── Condition.meta │ │ │ │ ├── Condition │ │ │ │ │ ├── ComparisonAttributeDrawer.cs │ │ │ │ │ ├── ComparisonAttributeDrawer.cs.meta │ │ │ │ │ ├── DisableAttributeDrawer.cs │ │ │ │ │ ├── DisableAttributeDrawer.cs.meta │ │ │ │ │ ├── DisableIfAttributeDrawer.cs │ │ │ │ │ ├── DisableIfAttributeDrawer.cs.meta │ │ │ │ │ ├── DisableInEditModeAttributeDrawer.cs │ │ │ │ │ ├── DisableInEditModeAttributeDrawer.cs.meta │ │ │ │ │ ├── DisableInPlayModeAttributeDrawer.cs │ │ │ │ │ ├── DisableInPlayModeAttributeDrawer.cs.meta │ │ │ │ │ ├── EnableIfAttributeDrawer.cs │ │ │ │ │ ├── EnableIfAttributeDrawer.cs.meta │ │ │ │ │ ├── HideAttributeDrawer.cs │ │ │ │ │ ├── HideAttributeDrawer.cs.meta │ │ │ │ │ ├── HideDisabledIfAttributeDrawer.cs │ │ │ │ │ ├── HideDisabledIfAttributeDrawer.cs.meta │ │ │ │ │ ├── HideIfAttributeDrawer.cs │ │ │ │ │ ├── HideIfAttributeDrawer.cs.meta │ │ │ │ │ ├── ShowDisabledIfAttributeDrawer.cs │ │ │ │ │ ├── ShowDisabledIfAttributeDrawer.cs.meta │ │ │ │ │ ├── ShowIfAttributeDrawer.cs │ │ │ │ │ ├── ShowIfAttributeDrawer.cs.meta │ │ │ │ │ ├── ShowWarningIfAttributeDrawer.cs │ │ │ │ │ └── ShowWarningIfAttributeDrawer.cs.meta │ │ │ │ ├── Decorator.meta │ │ │ │ ├── Decorator │ │ │ │ │ ├── BeginGroupAttributeDrawer.cs │ │ │ │ │ ├── BeginGroupAttributeDrawer.cs.meta │ │ │ │ │ ├── BeginHorizontalAttributeDrawer.cs │ │ │ │ │ ├── BeginHorizontalAttributeDrawer.cs.meta │ │ │ │ │ ├── BeginHorizontalGroupAttributeDrawer.cs │ │ │ │ │ ├── BeginHorizontalGroupAttributeDrawer.cs.meta │ │ │ │ │ ├── BeginIndentAttributeDrawer.cs │ │ │ │ │ ├── BeginIndentAttributeDrawer.cs.meta │ │ │ │ │ ├── BeginVerticalAttributeDrawer.cs │ │ │ │ │ ├── BeginVerticalAttributeDrawer.cs.meta │ │ │ │ │ ├── DynamicHelpAttributeDrawer.cs │ │ │ │ │ ├── DynamicHelpAttributeDrawer.cs.meta │ │ │ │ │ ├── EditorButtonAttributeDrawer.cs │ │ │ │ │ ├── EditorButtonAttributeDrawer.cs.meta │ │ │ │ │ ├── EndGroupAttributeDrawer.cs │ │ │ │ │ ├── EndGroupAttributeDrawer.cs.meta │ │ │ │ │ ├── EndHorizontalAttributeDrawer.cs │ │ │ │ │ ├── EndHorizontalAttributeDrawer.cs.meta │ │ │ │ │ ├── EndHorizontalGroupAttributeDrawer.cs │ │ │ │ │ ├── EndHorizontalGroupAttributeDrawer.cs.meta │ │ │ │ │ ├── EndIndentAttributeDrawer.cs │ │ │ │ │ ├── EndIndentAttributeDrawer.cs.meta │ │ │ │ │ ├── EndVerticalAttributeDrawer.cs │ │ │ │ │ ├── EndVerticalAttributeDrawer.cs.meta │ │ │ │ │ ├── GuiColorAttributeDrawer.cs │ │ │ │ │ ├── GuiColorAttributeDrawer.cs.meta │ │ │ │ │ ├── HelpAttributeDrawer.cs │ │ │ │ │ ├── HelpAttributeDrawer.cs.meta │ │ │ │ │ ├── HighlightAttributeDrawer.cs │ │ │ │ │ ├── HighlightAttributeDrawer.cs.meta │ │ │ │ │ ├── ImageAreaAttributeDrawer.cs │ │ │ │ │ ├── ImageAreaAttributeDrawer.cs.meta │ │ │ │ │ ├── IndentAreaAttributeDrawer.cs │ │ │ │ │ ├── IndentAreaAttributeDrawer.cs.meta │ │ │ │ │ ├── LabelAttributeDrawer.cs │ │ │ │ │ ├── LabelAttributeDrawer.cs.meta │ │ │ │ │ ├── LabelWidthAttributeDrawer.cs │ │ │ │ │ ├── LabelWidthAttributeDrawer.cs.meta │ │ │ │ │ ├── LineAttributeDrawer.cs │ │ │ │ │ ├── LineAttributeDrawer.cs.meta │ │ │ │ │ ├── SpaceAreaAttributeDrawer.cs │ │ │ │ │ └── SpaceAreaAttributeDrawer.cs.meta │ │ │ │ ├── PropertyCondition.cs │ │ │ │ ├── PropertyCondition.cs.meta │ │ │ │ ├── PropertyList.meta │ │ │ │ ├── PropertyList │ │ │ │ │ ├── ReorderableListAttributeDrawer.cs │ │ │ │ │ ├── ReorderableListAttributeDrawer.cs.meta │ │ │ │ │ ├── ReorderableListExposedAttributeDrawer.cs │ │ │ │ │ ├── ReorderableListExposedAttributeDrawer.cs.meta │ │ │ │ │ ├── ScrollableItemsAttributeDrawer.cs │ │ │ │ │ └── ScrollableItemsAttributeDrawer.cs.meta │ │ │ │ ├── PropertySelf.meta │ │ │ │ ├── PropertySelf │ │ │ │ │ ├── DynamicMinMaxBaseDrawer.cs │ │ │ │ │ ├── DynamicMinMaxBaseDrawer.cs.meta │ │ │ │ │ ├── DynamicMinMaxSliderAttributeDrawer.cs │ │ │ │ │ ├── DynamicMinMaxSliderAttributeDrawer.cs.meta │ │ │ │ │ ├── DynamicRangeAttributeDrawer.cs │ │ │ │ │ ├── DynamicRangeAttributeDrawer.cs.meta │ │ │ │ │ ├── IgnoreParentAttributeDrawer.cs │ │ │ │ │ ├── IgnoreParentAttributeDrawer.cs.meta │ │ │ │ │ ├── InLineEditorAttributeDrawer.cs │ │ │ │ │ ├── InLineEditorAttributeDrawer.cs.meta │ │ │ │ │ ├── ReferencePickerAttributeDrawer.cs │ │ │ │ │ ├── ReferencePickerAttributeDrawer.cs.meta │ │ │ │ │ ├── RegexValueAttributeDrawer.cs │ │ │ │ │ └── RegexValueAttributeDrawer.cs.meta │ │ │ │ ├── TargetType.meta │ │ │ │ ├── TargetType │ │ │ │ │ ├── SerializedDictionaryDrawer.cs │ │ │ │ │ └── SerializedDictionaryDrawer.cs.meta │ │ │ │ ├── ToolboxAttributeDrawer.cs │ │ │ │ ├── ToolboxAttributeDrawer.cs.meta │ │ │ │ ├── ToolboxConditionDrawer.cs │ │ │ │ ├── ToolboxConditionDrawer.cs.meta │ │ │ │ ├── ToolboxConditionDrawerBase.cs │ │ │ │ ├── ToolboxConditionDrawerBase.cs.meta │ │ │ │ ├── ToolboxDecoratorDrawer.cs │ │ │ │ ├── ToolboxDecoratorDrawer.cs.meta │ │ │ │ ├── ToolboxDecoratorDrawerBase.cs │ │ │ │ ├── ToolboxDecoratorDrawerBase.cs.meta │ │ │ │ ├── ToolboxDrawer.cs │ │ │ │ ├── ToolboxDrawer.cs.meta │ │ │ │ ├── ToolboxListPropertyDrawer.cs │ │ │ │ ├── ToolboxListPropertyDrawer.cs.meta │ │ │ │ ├── ToolboxPropertyDrawer.cs │ │ │ │ ├── ToolboxPropertyDrawer.cs.meta │ │ │ │ ├── ToolboxPropertyDrawerBase.cs │ │ │ │ ├── ToolboxPropertyDrawerBase.cs.meta │ │ │ │ ├── ToolboxSelfPropertyDrawer.cs │ │ │ │ ├── ToolboxSelfPropertyDrawer.cs.meta │ │ │ │ ├── ToolboxTargetTypeDrawer.cs │ │ │ │ └── ToolboxTargetTypeDrawer.cs.meta │ │ │ ├── ToolboxDrawersManager.cs │ │ │ ├── ToolboxDrawersManager.cs.meta │ │ │ ├── ToolboxEditorDrawer.cs │ │ │ ├── ToolboxEditorDrawer.cs.meta │ │ │ ├── ToolboxPropertyHandler.cs │ │ │ └── ToolboxPropertyHandler.cs.meta │ │ ├── Editors.meta │ │ ├── Editors │ │ │ ├── ToolboxScriptedImporterEditor.cs │ │ │ └── ToolboxScriptedImporterEditor.cs.meta │ │ ├── Hierarchy.meta │ │ ├── Hierarchy │ │ │ ├── HierarchyItemDataType.cs │ │ │ ├── HierarchyItemDataType.cs.meta │ │ │ ├── HierarchyPropertyLabel.cs │ │ │ ├── HierarchyPropertyLabel.cs.meta │ │ │ ├── HierarchyTreeUtility.cs │ │ │ └── HierarchyTreeUtility.cs.meta │ │ ├── IToolboxEditor.cs │ │ ├── IToolboxEditor.cs.meta │ │ ├── IToolboxEditorDrawer.cs │ │ ├── IToolboxEditorDrawer.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── ChangeIndentScope.cs │ │ │ ├── ChangeIndentScope.cs.meta │ │ │ ├── DisabledScope.cs │ │ │ ├── DisabledScope.cs.meta │ │ │ ├── FixedFieldsScope.cs │ │ │ ├── FixedFieldsScope.cs.meta │ │ │ ├── GuiBackground.cs │ │ │ ├── GuiBackground.cs.meta │ │ │ ├── PropertyScope.cs │ │ │ ├── PropertyScope.cs.meta │ │ │ ├── ReorderableList.cs │ │ │ ├── ReorderableList.cs.meta │ │ │ ├── ReorderableListBase.cs │ │ │ ├── ReorderableListBase.cs.meta │ │ │ ├── SearchablePopup.cs │ │ │ ├── SearchablePopup.cs.meta │ │ │ ├── ToolboxEditorList.cs │ │ │ ├── ToolboxEditorList.cs.meta │ │ │ ├── Types.meta │ │ │ ├── Types │ │ │ │ ├── TypeAppearanceContext.cs │ │ │ │ ├── TypeAppearanceContext.cs.meta │ │ │ │ ├── TypeConstraintContext.cs │ │ │ │ ├── TypeConstraintContext.cs.meta │ │ │ │ ├── TypeConstraintSerializeReference.cs │ │ │ │ ├── TypeConstraintSerializeReference.cs.meta │ │ │ │ ├── TypeConstraintStandard.cs │ │ │ │ ├── TypeConstraintStandard.cs.meta │ │ │ │ ├── TypeField.cs │ │ │ │ ├── TypeField.cs.meta │ │ │ │ ├── TypesCachedCollection.cs │ │ │ │ ├── TypesCachedCollection.cs.meta │ │ │ │ ├── TypesEditorCollection.cs │ │ │ │ └── TypesEditorCollection.cs.meta │ │ │ ├── ZeroIndentScope.cs │ │ │ └── ZeroIndentScope.cs.meta │ │ ├── Management.meta │ │ ├── Management │ │ │ ├── ToolboxAssetProcessor.cs │ │ │ ├── ToolboxAssetProcessor.cs.meta │ │ │ ├── ToolboxManager.cs │ │ │ └── ToolboxManager.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Folder Icons.meta │ │ │ └── Folder Icons │ │ │ │ ├── AudioImporter Icon.png │ │ │ │ ├── AudioImporter Icon.png.meta │ │ │ │ ├── Editor Folder Icon Small.psd │ │ │ │ ├── Editor Folder Icon Small.psd.meta │ │ │ │ ├── Editor Folder Icon.psd │ │ │ │ ├── Editor Folder Icon.psd.meta │ │ │ │ ├── Material Icon.png │ │ │ │ ├── Material Icon.png.meta │ │ │ │ ├── Mesh Icon.png │ │ │ │ ├── Mesh Icon.png.meta │ │ │ │ ├── Prefab Icon.png │ │ │ │ ├── Prefab Icon.png.meta │ │ │ │ ├── PrefabModel Icon.png │ │ │ │ ├── PrefabModel Icon.png.meta │ │ │ │ ├── SceneAsset Icon.png │ │ │ │ ├── SceneAsset Icon.png.meta │ │ │ │ ├── ScriptableObject Icon.png │ │ │ │ ├── ScriptableObject Icon.png.meta │ │ │ │ ├── Scripts Folder Icon Small.psd │ │ │ │ ├── Scripts Folder Icon Small.psd.meta │ │ │ │ ├── Scripts Folder Icon.psd │ │ │ │ ├── Scripts Folder Icon.psd.meta │ │ │ │ ├── Shader Icon.png │ │ │ │ ├── Shader Icon.png.meta │ │ │ │ ├── Sprite Icon.png │ │ │ │ ├── Sprite Icon.png.meta │ │ │ │ ├── TextMesh Icon.png │ │ │ │ ├── TextMesh Icon.png.meta │ │ │ │ ├── Texture Icon.png │ │ │ │ ├── Texture Icon.png.meta │ │ │ │ ├── Toolbox Icon Small.psd │ │ │ │ ├── Toolbox Icon Small.psd.meta │ │ │ │ ├── Toolbox Icon.psd │ │ │ │ ├── Toolbox Icon.psd.meta │ │ │ │ ├── cs Script Icon.png │ │ │ │ └── cs Script Icon.png.meta │ │ ├── SceneView.meta │ │ ├── SceneView │ │ │ ├── ToolboxEditorSceneViewObjectSelector.cs │ │ │ └── ToolboxEditorSceneViewObjectSelector.cs.meta │ │ ├── Toolbox.Editor.asmdef │ │ ├── Toolbox.Editor.asmdef.meta │ │ ├── ToolboxDefines.cs │ │ ├── ToolboxDefines.cs.meta │ │ ├── ToolboxEditor.cs │ │ ├── ToolboxEditor.cs.meta │ │ ├── ToolboxEditorGui.cs │ │ ├── ToolboxEditorGui.cs.meta │ │ ├── ToolboxEditorHandler.cs │ │ ├── ToolboxEditorHandler.cs.meta │ │ ├── ToolboxEditorHierarchy.cs │ │ ├── ToolboxEditorHierarchy.cs.meta │ │ ├── ToolboxEditorLog.cs │ │ ├── ToolboxEditorLog.cs.meta │ │ ├── ToolboxEditorProject.cs │ │ ├── ToolboxEditorProject.cs.meta │ │ ├── ToolboxEditorSceneView.cs │ │ ├── ToolboxEditorSceneView.cs.meta │ │ ├── ToolboxEditorSettings.cs │ │ ├── ToolboxEditorSettings.cs.meta │ │ ├── ToolboxEditorSettingsEditor.cs │ │ ├── ToolboxEditorSettingsEditor.cs.meta │ │ ├── ToolboxEditorToolbar.cs │ │ ├── ToolboxEditorToolbar.cs.meta │ │ ├── ToolboxLayoutHandler.cs │ │ ├── ToolboxLayoutHandler.cs.meta │ │ ├── ToolboxPrefs.cs │ │ ├── ToolboxPrefs.cs.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── AssemblyUttility.cs │ │ │ ├── AssemblyUttility.cs.meta │ │ │ ├── DraggingUtility.cs │ │ │ ├── DraggingUtility.cs.meta │ │ │ ├── EditorGuiUtility.cs │ │ │ ├── EditorGuiUtility.cs.meta │ │ │ ├── GuiLayoutUtility.cs │ │ │ ├── GuiLayoutUtility.cs.meta │ │ │ ├── InspectorUtility.cs │ │ │ ├── InspectorUtility.cs.meta │ │ │ ├── PrefabUtility.cs │ │ │ ├── PrefabUtility.cs.meta │ │ │ ├── PropertyUtility.cs │ │ │ ├── PropertyUtility.cs.meta │ │ │ ├── ReflectionUtility.cs │ │ │ ├── ReflectionUtility.cs.meta │ │ │ ├── ScriptingUtility.cs │ │ │ ├── ScriptingUtility.cs.meta │ │ │ ├── TypeUtility.cs │ │ │ └── TypeUtility.cs.meta │ │ ├── Wizards.meta │ │ └── Wizards │ │ │ ├── ScriptableObjectCreationWizard.cs │ │ │ ├── ScriptableObjectCreationWizard.cs.meta │ │ │ ├── ToolboxWizard.cs │ │ │ └── ToolboxWizard.cs.meta │ ├── EditorSettings.asset │ ├── EditorSettings.asset.meta │ ├── HOWTO.md │ ├── HOWTO.md.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── CreateInWizardAttribute.cs │ │ │ ├── CreateInWizardAttribute.cs.meta │ │ │ ├── Property.meta │ │ │ └── Property │ │ │ │ ├── ILabelProcessorAttribute.cs │ │ │ │ ├── ILabelProcessorAttribute.cs.meta │ │ │ │ ├── Regular.meta │ │ │ │ ├── Regular │ │ │ │ ├── AnimationCurveSettingsAttribute.cs │ │ │ │ ├── AnimationCurveSettingsAttribute.cs.meta │ │ │ │ ├── AssetPreviewAttribute.cs │ │ │ │ ├── AssetPreviewAttribute.cs.meta │ │ │ │ ├── ChildObjectOnlyAttribute.cs │ │ │ │ ├── ChildObjectOnlyAttribute.cs.meta │ │ │ │ ├── ClampAttribute.cs │ │ │ │ ├── ClampAttribute.cs.meta │ │ │ │ ├── DirectoryAttribute.cs │ │ │ │ ├── DirectoryAttribute.cs.meta │ │ │ │ ├── EnumFlagAttribute.cs │ │ │ │ ├── EnumFlagAttribute.cs.meta │ │ │ │ ├── EnumTogglesAttribute.cs │ │ │ │ ├── EnumTogglesAttribute.cs.meta │ │ │ │ ├── FormattedNumberAttribute.cs │ │ │ │ ├── FormattedNumberAttribute.cs.meta │ │ │ │ ├── LabelWidthAttribute.cs │ │ │ │ ├── LabelWidthAttribute.cs.meta │ │ │ │ ├── LayerAttribute.cs │ │ │ │ ├── LayerAttribute.cs.meta │ │ │ │ ├── LeftToggleAttribute.cs │ │ │ │ ├── LeftToggleAttribute.cs.meta │ │ │ │ ├── MinMaxSliderAttribute.cs │ │ │ │ ├── MinMaxSliderAttribute.cs.meta │ │ │ │ ├── NotNullAttribute.cs │ │ │ │ ├── NotNullAttribute.cs.meta │ │ │ │ ├── NotPrefabObjectOnlyAttribute.cs │ │ │ │ ├── NotPrefabObjectOnlyAttribute.cs.meta │ │ │ │ ├── OnValueChangedAttribute.cs │ │ │ │ ├── OnValueChangedAttribute.cs.meta │ │ │ │ ├── PasswordAttribute.cs │ │ │ │ ├── PasswordAttribute.cs.meta │ │ │ │ ├── PrefabObjectOnlyAttribute.cs │ │ │ │ ├── PrefabObjectOnlyAttribute.cs.meta │ │ │ │ ├── PresetAttribute.cs │ │ │ │ ├── PresetAttribute.cs.meta │ │ │ │ ├── ProgressBarAttribute.cs │ │ │ │ ├── ProgressBarAttribute.cs.meta │ │ │ │ ├── SceneDetailsAttribute.cs │ │ │ │ ├── SceneDetailsAttribute.cs.meta │ │ │ │ ├── SceneNameAttribute.cs │ │ │ │ ├── SceneNameAttribute.cs.meta │ │ │ │ ├── SceneObjectOnlyAttribute.cs │ │ │ │ ├── SceneObjectOnlyAttribute.cs.meta │ │ │ │ ├── SearchableEnumAttribute.cs │ │ │ │ ├── SearchableEnumAttribute.cs.meta │ │ │ │ ├── SuffixAttribute.cs │ │ │ │ ├── SuffixAttribute.cs.meta │ │ │ │ ├── TagSelectorAttribute.cs │ │ │ │ ├── TagSelectorAttribute.cs.meta │ │ │ │ ├── TypeConstraintAttribute.cs │ │ │ │ └── TypeConstraintAttribute.cs.meta │ │ │ │ ├── Special.meta │ │ │ │ ├── Special │ │ │ │ ├── HideLabelAttribute.cs │ │ │ │ ├── HideLabelAttribute.cs.meta │ │ │ │ ├── LabelByChildAttribute.cs │ │ │ │ ├── LabelByChildAttribute.cs.meta │ │ │ │ ├── NewLabelAttribute.cs │ │ │ │ └── NewLabelAttribute.cs.meta │ │ │ │ ├── Toolbox.meta │ │ │ │ └── Toolbox │ │ │ │ ├── ArchetypeAttributes.meta │ │ │ │ ├── ArchetypeAttributes │ │ │ │ ├── ScriptablesListAttribute.cs │ │ │ │ ├── ScriptablesListAttribute.cs.meta │ │ │ │ ├── TitleAttribute.cs │ │ │ │ └── TitleAttribute.cs.meta │ │ │ │ ├── ConditionAttributes.meta │ │ │ │ ├── ConditionAttributes │ │ │ │ ├── ComparisonAttribute.cs │ │ │ │ ├── ComparisonAttribute.cs.meta │ │ │ │ ├── DisableAttribute.cs │ │ │ │ ├── DisableAttribute.cs.meta │ │ │ │ ├── DisableIfAttribute.cs │ │ │ │ ├── DisableIfAttribute.cs.meta │ │ │ │ ├── DisableInEditModeAttribute.cs │ │ │ │ ├── DisableInEditModeAttribute.cs.meta │ │ │ │ ├── DisableInPlayModeAttribute.cs │ │ │ │ ├── DisableInPlayModeAttribute.cs.meta │ │ │ │ ├── EnableIfAttribute.cs │ │ │ │ ├── EnableIfAttribute.cs.meta │ │ │ │ ├── HideAttribute.cs │ │ │ │ ├── HideAttribute.cs.meta │ │ │ │ ├── HideDisabledIfAttribute.cs │ │ │ │ ├── HideDisabledIfAttribute.cs.meta │ │ │ │ ├── HideIfAttribute.cs │ │ │ │ ├── HideIfAttribute.cs.meta │ │ │ │ ├── ShowDisabledIfAttribute.cs │ │ │ │ ├── ShowDisabledIfAttribute.cs.meta │ │ │ │ ├── ShowIfAttribute.cs │ │ │ │ ├── ShowIfAttribute.cs.meta │ │ │ │ ├── ShowWarningIfAttribute.cs │ │ │ │ ├── ShowWarningIfAttribute.cs.meta │ │ │ │ ├── UnityComparisonMethod.cs │ │ │ │ └── UnityComparisonMethod.cs.meta │ │ │ │ ├── DecoratorAttributes.meta │ │ │ │ ├── DecoratorAttributes │ │ │ │ ├── BeginGroupAttribute.cs │ │ │ │ ├── BeginGroupAttribute.cs.meta │ │ │ │ ├── BeginHorizontalAttribute.cs │ │ │ │ ├── BeginHorizontalAttribute.cs.meta │ │ │ │ ├── BeginHorizontalGroupAttribute.cs │ │ │ │ ├── BeginHorizontalGroupAttribute.cs.meta │ │ │ │ ├── BeginIndentAttribute.cs │ │ │ │ ├── BeginIndentAttribute.cs.meta │ │ │ │ ├── BeginVerticalAttribute.cs │ │ │ │ ├── BeginVerticalAttribute.cs.meta │ │ │ │ ├── DynamicHelpAttribute.cs │ │ │ │ ├── DynamicHelpAttribute.cs.meta │ │ │ │ ├── EditorButtonAttribute.cs │ │ │ │ ├── EditorButtonAttribute.cs.meta │ │ │ │ ├── EndGroupAttribute.cs │ │ │ │ ├── EndGroupAttribute.cs.meta │ │ │ │ ├── EndHorizontalAttribute.cs │ │ │ │ ├── EndHorizontalAttribute.cs.meta │ │ │ │ ├── EndHorizontalGroupAttribute.cs │ │ │ │ ├── EndHorizontalGroupAttribute.cs.meta │ │ │ │ ├── EndIndentAttribute.cs │ │ │ │ ├── EndIndentAttribute.cs.meta │ │ │ │ ├── EndVerticalAttribute.cs │ │ │ │ ├── EndVerticalAttribute.cs.meta │ │ │ │ ├── GroupStyle.cs │ │ │ │ ├── GroupStyle.cs.meta │ │ │ │ ├── GuiColorAttribute.cs │ │ │ │ ├── GuiColorAttribute.cs.meta │ │ │ │ ├── HelpAttribute.cs │ │ │ │ ├── HelpAttribute.cs.meta │ │ │ │ ├── HighlightAttribute.cs │ │ │ │ ├── HighlightAttribute.cs.meta │ │ │ │ ├── ImageAreaAttribute.cs │ │ │ │ ├── ImageAreaAttribute.cs.meta │ │ │ │ ├── IndentAreaAttribute.cs │ │ │ │ ├── IndentAreaAttribute.cs.meta │ │ │ │ ├── LabelAttribute.cs │ │ │ │ ├── LabelAttribute.cs.meta │ │ │ │ ├── LineAttribute.cs │ │ │ │ ├── LineAttribute.cs.meta │ │ │ │ ├── SpaceAreaAttribute.cs │ │ │ │ ├── SpaceAreaAttribute.cs.meta │ │ │ │ ├── UnityMessageType.cs │ │ │ │ └── UnityMessageType.cs.meta │ │ │ │ ├── PropertyListAttributes.meta │ │ │ │ ├── PropertyListAttributes │ │ │ │ ├── ListStyle.cs │ │ │ │ ├── ListStyle.cs.meta │ │ │ │ ├── ReorderableListAttribute.cs │ │ │ │ ├── ReorderableListAttribute.cs.meta │ │ │ │ ├── ReorderableListExposedAttribute.cs │ │ │ │ ├── ReorderableListExposedAttribute.cs.meta │ │ │ │ ├── ScrollableItemsAttribute.cs │ │ │ │ └── ScrollableItemsAttribute.cs.meta │ │ │ │ ├── PropertySelfAttributes.meta │ │ │ │ ├── PropertySelfAttributes │ │ │ │ ├── DynamicMinMaxBaseAttribute.cs │ │ │ │ ├── DynamicMinMaxBaseAttribute.cs.meta │ │ │ │ ├── DynamicMinMaxSliderAttribute.cs │ │ │ │ ├── DynamicMinMaxSliderAttribute.cs.meta │ │ │ │ ├── DynamicRangeAttribute.cs │ │ │ │ ├── DynamicRangeAttribute.cs.meta │ │ │ │ ├── IgnoreParentAttribute.cs │ │ │ │ ├── IgnoreParentAttribute.cs.meta │ │ │ │ ├── InLineEditorAttribute.cs │ │ │ │ ├── InLineEditorAttribute.cs.meta │ │ │ │ ├── ReferencePickerAttribute.cs │ │ │ │ ├── ReferencePickerAttribute.cs.meta │ │ │ │ ├── RegexValueAttribute.cs │ │ │ │ └── RegexValueAttribute.cs.meta │ │ │ │ ├── ToolboxArchetypeAttribute.cs │ │ │ │ ├── ToolboxArchetypeAttribute.cs.meta │ │ │ │ ├── ToolboxAttribute.cs │ │ │ │ ├── ToolboxAttribute.cs.meta │ │ │ │ ├── ToolboxConditionAttribute.cs │ │ │ │ ├── ToolboxConditionAttribute.cs.meta │ │ │ │ ├── ToolboxDecoratorAttribute.cs │ │ │ │ ├── ToolboxDecoratorAttribute.cs.meta │ │ │ │ ├── ToolboxListPropertyAttribute.cs │ │ │ │ ├── ToolboxListPropertyAttribute.cs.meta │ │ │ │ ├── ToolboxPropertyAttribute.cs │ │ │ │ ├── ToolboxPropertyAttribute.cs.meta │ │ │ │ ├── ToolboxSelfPropertyAttribute.cs │ │ │ │ └── ToolboxSelfPropertyAttribute.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── RectExtensions.cs │ │ │ ├── RectExtensions.cs.meta │ │ │ ├── TypeExtensions.cs │ │ │ └── TypeExtensions.cs.meta │ │ ├── Folders.meta │ │ ├── Folders │ │ │ ├── FolderData.cs │ │ │ ├── FolderData.cs.meta │ │ │ ├── FolderDataType.cs │ │ │ ├── FolderDataType.cs.meta │ │ │ ├── FolderIconType.cs │ │ │ └── FolderIconType.cs.meta │ │ ├── Serialization.meta │ │ ├── Serialization │ │ │ ├── SceneData.cs │ │ │ ├── SceneData.cs.meta │ │ │ ├── SceneSerializationProcessor.cs │ │ │ ├── SceneSerializationProcessor.cs.meta │ │ │ ├── SceneSerializationUtility.cs │ │ │ ├── SceneSerializationUtility.cs.meta │ │ │ ├── SerializedDateTime.cs │ │ │ ├── SerializedDateTime.cs.meta │ │ │ ├── SerializedDictionary.cs │ │ │ ├── SerializedDictionary.cs.meta │ │ │ ├── SerializedDirectory.cs │ │ │ ├── SerializedDirectory.cs.meta │ │ │ ├── SerializedScene.cs │ │ │ ├── SerializedScene.cs.meta │ │ │ ├── SerializedType.cs │ │ │ └── SerializedType.cs.meta │ │ ├── Toolbox.asmdef │ │ └── Toolbox.asmdef.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ComparisonTest.cs │ │ │ ├── ComparisonTest.cs.meta │ │ │ ├── ExtractionTest.cs │ │ │ ├── ExtractionTest.cs.meta │ │ │ ├── PropertyUtilitesTest.cs │ │ │ ├── PropertyUtilitesTest.cs.meta │ │ │ ├── ReorderableListTest.cs │ │ │ ├── ReorderableListTest.cs.meta │ │ │ ├── SerializationTest.cs │ │ │ ├── SerializationTest.cs.meta │ │ │ ├── TestObject1.cs │ │ │ ├── TestObject1.cs.meta │ │ │ ├── TestObject2.cs │ │ │ ├── TestObject2.cs.meta │ │ │ ├── TestsUtility.cs │ │ │ ├── TestsUtility.cs.meta │ │ │ ├── Toolbox.Editor.Tests.asmdef │ │ │ ├── Toolbox.Editor.Tests.asmdef.meta │ │ │ ├── TypesFilteringTest.cs │ │ │ └── TypesFilteringTest.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── RectExtensionsAlignTest.cs │ │ │ ├── RectExtensionsAlignTest.cs.meta │ │ │ ├── SerializationTest.cs │ │ │ ├── SerializationTest.cs.meta │ │ │ ├── Toolbox.Tests.asmdef │ │ │ └── Toolbox.Tests.asmdef.meta │ ├── package.json │ └── package.json.meta ├── Examples.meta └── Examples │ ├── Editor Resources.meta │ ├── Editor Resources │ ├── Editor Camera Icon.png │ ├── Editor Camera Icon.png.meta │ ├── Editor Canvas Icon.png │ ├── Editor Canvas Icon.png.meta │ ├── Editor Light Icon.png │ ├── Editor Light Icon.png.meta │ ├── Editor Settings Icon.png │ └── Editor Settings Icon.png.meta │ ├── Editor.meta │ ├── Editor │ ├── Drawers.meta │ ├── Drawers │ │ ├── RegularDrawers.meta │ │ ├── RegularDrawers │ │ │ ├── HexColorAttributeDrawer.cs │ │ │ ├── HexColorAttributeDrawer.cs.meta │ │ │ ├── RandomAttributeDrawer.cs │ │ │ ├── RandomAttributeDrawer.cs.meta │ │ │ ├── Vector2DirectionAttributeDrawer.cs │ │ │ ├── Vector2DirectionAttributeDrawer.cs.meta │ │ │ ├── Vector2RangeAttributeDrawer.cs │ │ │ ├── Vector2RangeAttributeDrawer.cs.meta │ │ │ ├── Vector3DirectionAttributeDrawer.cs │ │ │ ├── Vector3DirectionAttributeDrawer.cs.meta │ │ │ ├── Vector3RangeAttributeDrawer.cs │ │ │ └── Vector3RangeAttributeDrawer.cs.meta │ │ ├── ToolboxDrawers.meta │ │ └── ToolboxDrawers │ │ │ ├── SampleDrawer.cs │ │ │ └── SampleDrawer.cs.meta │ ├── SampleEditor.cs │ ├── SampleEditor.cs.meta │ ├── SampleScriptedImporter.cs │ ├── SampleScriptedImporter.cs.meta │ ├── SampleScriptedImporterEditor.cs │ ├── SampleScriptedImporterEditor.cs.meta │ ├── SampleToolbar.cs │ ├── SampleToolbar.cs.meta │ ├── SampleWizard.cs │ └── SampleWizard.cs.meta │ ├── Materials.meta │ ├── Materials │ ├── CubeMat.mat │ ├── CubeMat.mat.meta │ ├── TerrainMat.mat │ ├── TerrainMat.mat.meta │ ├── TestMat.mat │ └── TestMat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── Cube.prefab │ ├── Cube.prefab.meta │ ├── RedCube.prefab │ └── RedCube.prefab.meta │ ├── Samples.meta │ ├── Samples │ ├── Sample.sample │ └── Sample.sample.meta │ ├── Scenes.meta │ ├── Scenes │ ├── SampleScene.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── SampleScene │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── Lightmap-0_comp_dir.png │ │ ├── Lightmap-0_comp_dir.png.meta │ │ ├── Lightmap-0_comp_light.exr │ │ ├── Lightmap-0_comp_light.exr.meta │ │ ├── Lightmap-0_comp_shadowmask.png │ │ ├── Lightmap-0_comp_shadowmask.png.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta │ ├── SampleSceneSettings.lighting │ ├── SampleSceneSettings.lighting.meta │ ├── StartupScene.unity │ └── StartupScene.unity.meta │ ├── Scriptables.meta │ ├── Scriptables │ ├── Sample Scriptable Object.asset │ └── Sample Scriptable Object.asset.meta │ ├── Scripts.meta │ ├── Scripts │ ├── Attributes.meta │ ├── Attributes │ │ ├── HexColorAttribute.cs │ │ ├── HexColorAttribute.cs.meta │ │ ├── RandomAttribute.cs │ │ ├── RandomAttribute.cs.meta │ │ ├── SampleAttribute.cs │ │ ├── SampleAttribute.cs.meta │ │ ├── Vector2DirectionAttribute.cs │ │ ├── Vector2DirectionAttribute.cs.meta │ │ ├── Vector2RangeAttribute.cs │ │ ├── Vector2RangeAttribute.cs.meta │ │ ├── Vector3DirectionAttribute.cs │ │ ├── Vector3DirectionAttribute.cs.meta │ │ ├── Vector3RangeAttribute.cs │ │ └── Vector3RangeAttribute.cs.meta │ ├── SampleBehaviour1.cs │ ├── SampleBehaviour1.cs.meta │ ├── SampleBehaviour2.cs │ ├── SampleBehaviour2.cs.meta │ ├── SampleBehaviour3.cs │ ├── SampleBehaviour3.cs.meta │ ├── SampleBehaviour4.cs │ ├── SampleBehaviour4.cs.meta │ ├── SampleBehaviour5.cs │ ├── SampleBehaviour5.cs.meta │ ├── SampleBehaviour6.cs │ ├── SampleBehaviour6.cs.meta │ ├── SampleBehaviour7.cs │ ├── SampleBehaviour7.cs.meta │ ├── SampleSceneLoader.cs │ ├── SampleSceneLoader.cs.meta │ ├── SampleScriptableObject.cs │ ├── SampleScriptableObject.cs.meta │ ├── SceneLoader.cs │ └── SceneLoader.cs.meta │ ├── Shaders.meta │ ├── Shaders │ ├── RandomTiling.shader │ ├── RandomTiling.shader.meta │ ├── TestShader.shader │ └── TestShader.shader.meta │ ├── Sounds.meta │ ├── Sounds │ ├── ImpactSound.mp3 │ └── ImpactSound.mp3.meta │ ├── Textures.meta │ └── Textures │ ├── TerrainTex.jpg │ └── TerrainTex.jpg.meta ├── Docs ├── animationcurvesettings.png ├── assetpreview.png ├── button.png ├── createso.png ├── customshader.png ├── decorators.png ├── dictionary1.png ├── dictionary2.png ├── dictionary3.png ├── directory1.png ├── directory2.png ├── disabled.png ├── enableif1.png ├── enableif2.png ├── enumsearch.png ├── enumtoggles.png ├── formattednumber.png ├── helpbox.png ├── hidelabel.png ├── hierarchy.png ├── hierarchy1.png ├── hierarchy2.png ├── horizontal.png ├── ignoreparent.png ├── imagearea.png ├── indent.png ├── inlined1.png ├── inlined2.png ├── inlined3.png ├── inspector.png ├── labelbychild1.png ├── labelbychild2.png ├── labelwidth.png ├── layer.png ├── lefttoggle.png ├── list1.png ├── list2.png ├── list3.png ├── list4.png ├── minmaxslider.png ├── newlabel.png ├── notnull1.png ├── notnull2.png ├── password.png ├── preset.png ├── progressbar1.png ├── progressbar2.png ├── project1.png ├── project2.png ├── random.png ├── readonly.png ├── referencepicker.png ├── scenedetails.png ├── scenename1.png ├── scenename2.png ├── sceneview.png ├── scrollableitems.png ├── separator.png ├── serializeddate.png ├── serializeddirectory.png ├── serializedscene.png ├── serializedtype.png ├── serializereferencegenerics.png ├── serializereferenceoperations.png ├── settings.png ├── showif1.png ├── showif2.png ├── suffix.png ├── tagselector.png ├── title.png ├── toolbar.png └── utils.png ├── LICENSE.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── boot.config ├── README.md └── UserSettings └── EditorUserSettings.asset /.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c5a542f2ff6e87499c1a85957eafd9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9c23a67c52bdfa49a19fd18cb0efc51 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bc77ed6985b1df409c86244fd859e75 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Toolbox.Editor.Tests")] -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9902dbb509706e44eada79a468fcaf93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1e662719d3a4f8428bc265f89ff3e3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/IContextMenuOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e9621ae61945d547b96764dfcc91297 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/Management.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9550a0c98e053e40a4634f10ca80436 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/Management/ToolboxContextMenuManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ce87ad5f7cff7d478ab9f199a1619c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/Operations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6594e87a290f93e43ac2a6fb741e38b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/Operations/SerializeReference.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9778a5dacff47d488da2a0e59f144d0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ContextMenu/Operations/SerializeReference/CopySerializeReferenceCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9324f134d404e2499b9815283f88ff2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01278ea3080f2af43a9bc3213aba1a1a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcf08dcaefe35c5468ccea66dcd79088 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4389ce17195be2343934c235840ee51f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/BooleanComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bfc496d7efb7fa4e96cc88254089ea4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/FloatComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ccb4e1eaf8e12a4d86c1a3aa2b99cd6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/IntegerComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d23ba53b021cb78448bd0bf45a33c9a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ObjectComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c5c376fc8c3ae4d8bdd3034d54cce8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/StringComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9ba49f838d386f488d8f3d9285515b2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ValueComparerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72a871a89612c5b44be3d869974cb03d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ValueComparisonHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34b46f089c7a48744b5860e6c484d4ea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ValueComparisonInput.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Toolbox.Editor.Drawers 4 | { 5 | [Obsolete] 6 | public struct ValueComparisonInput 7 | { 8 | public object sourceValue; 9 | public object targetValue; 10 | public ValueComparisonMethod method; 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ValueComparisonInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e59d5ae8edaca240b1c0c9f62e6d598 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Comparison/ValueComparisonMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07637cc4c14a5ba489204f41c3bda26b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/ControlDataStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b017609e4fff016488a238d7eb2e1ec6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/DrawerDataStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8ae6cb9b3ffe1349bc87f909df163ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/DrawerDataStorageBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c13a6da2d6177824ea454ff1d7b723da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/DrawerStorageManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9883037c28784ae448758dde3e5c5cbd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6b013a37ae7f004cabbf0f2857a9a8a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/FieldValueExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a69fda5549de264189652da381f8dbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/IValueExtractor.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Drawers 2 | { 3 | internal interface IValueExtractor 4 | { 5 | bool TryGetValue(string source, object declaringObject, out object value); 6 | } 7 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/IValueExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb9e528d3a68c3a44a6d7829322eb592 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/MethodValueExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbde16318fd4e614c86ccc1d7d8308de 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/PropertyValueExtractor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 480b4b3bddb548349adceef49a4d5138 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/ValueExtractionHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561faa155e66f784dabf8ac6cb9b840a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/ValueSourceType.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Drawers 2 | { 3 | internal enum ValueSourceType 4 | { 5 | Field, 6 | Property, 7 | Method 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/Extraction/ValueSourceType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c0cc2c42c5b7ed4d8789710e56d4f1b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Helpers/PropertyDataStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdb7229c9f954bc41a43b198a6c708f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/ISerializedPropertyContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using UnityEditor; 4 | 5 | namespace Toolbox.Editor.Drawers 6 | { 7 | public interface ISerializedPropertyContext 8 | { 9 | SerializedProperty Property { get; } 10 | FieldInfo FieldInfo { get; } 11 | Type Type { get; } 12 | } 13 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/ISerializedPropertyContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbdd57b1e7c956e41ba10cd6aa4ad2d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d294f5bb5d903b44dab5dd7eb495a89e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Internal/FolderDataDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e97344af7646cbc46915f755219b7b3f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db0d5baf66957de4482d47c68ce9eb1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/BaseMaterialPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9732912ae688002418369d2acc6fcbff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialCompactTextureDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34c574b1c23afac4699067176e3bc7a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialConditionalDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 238b848dd0d48f34fbcf905a3f6d5a0a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialHelpDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b2373717bdc0a2488545f992e949af9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialHideIfToggleDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54420048843b5bc41bfabff84f72697c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialIndentDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46c00b46d0bc38c4d8464c6d9a006dc0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialMinMaxSliderDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b24a215a341ec5c40a7f965ba5babb00 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialShowIfToggleDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e2645a792d017c42b24cef37aa2d1fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialTitleDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d067976aa1f77f248b84e9eb763f1629 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialVector2Drawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50300eb440277894e95d11eb88363ad2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Material/MaterialVector3Drawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d89f0415e21c8e41a307ca332f4ea79 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6f16a84f009b10439b032c3a5657ba3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/AnimationCurveSettingsAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bff5a6e3c37b7ca4eba282c8910761aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/AssetPreviewAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad49ceeef9a211f4aba3adc7fd72ba7e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/ChildObjectOnlyAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4adbc1cf97446634a98a305a773ee12e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/ClampAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0855187c081fa4b4d829f811fc934e1e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/DirectoryAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db45d04e2bc45842815e04edc61787e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/EnumTogglesAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d03587db18761343953575f2a022d62 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/FormattedNumberAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68debf9d70bfb99489d951a43400c6c6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/HideLabelAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39efcef9f30f4664e8133b42908282dc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/LayerAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e882412be488794d9ef5b4da5843db2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/LeftToggleAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1a4466c9c742a1478e2e2028b80d7ce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/MinMaxSliderAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cebdfd4ac0c26b74fb8447aec4bb629f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/NewLabelAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a951e4a366843544393cdbc760b84425 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/NotNullAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9323b86039d93f40ae012ab169c03e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/NotPrefabObjectOnlyAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ee6ec9684f99b439f72ed532c8056f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/ObjectValidationDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecafd89d8be6b40418fbe91910ab8d90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/OnValueChangedAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 997d0c739d556f44486942d7acd7c8bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/PasswordAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3836d5be47ed1c447bba201e37aad5b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/PrefabObjectOnlyAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc97f8d8a14462744be6920b4bb92ecb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/PresetAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1deeaa60e6a9e29489fdc373d286b9c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/ProgressBarAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aca8f83dd162b9148924f6d58a100b77 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/PropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5cbc63f189377e40a8a994d36fc15b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SceneNameAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36bb635b54daf5e4686100ccc973ba56 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SceneObjectOnlyAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c203c30f608ece9418d3b15314980dc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SearchableEnumAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b78d3aee187e6064db9276f2c423f822 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SerializedDateTimeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ef036d3d91c89449984e72c6c31d99 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SerializedDirectoryDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ee7a63d55129bf48acd4381ec8c9b5c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SerializedSceneDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a451bf7f6eb00764ea6eab6cefa66c15 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SerializedTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b07bfd83b7a5734cb856e7eb42809d3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/SuffixAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9171cefdecc36a34ba3d5a41a1b58fcd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Regular/TagSelectorAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d45b92d79dfa9f64ba81858fd41421bc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5299898342ee7ce4c87220c13a4b6924 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50801559125de0d4985e897d3212ad54 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/ComparisonAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b80b3309d52640b4b963b0fc4a1305a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/DisableAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c13ab5cd174ba854391f3eff071da251 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/DisableIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e56c0982440b7041b4286dd2ad52e3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/DisableInEditModeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5c4b58349e74f54a956ec5617c5f6a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/DisableInPlayModeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a63bfb6499dbd54d85d229144f7185d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/EnableIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49ffd4cef13e03e40b167b938c4555aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/HideAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc6251d262b731347bae0eccf70ea124 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/HideDisabledIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1ec73e70b622b14f898670e5d032316 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/HideIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83b851e90d441fc4dbf0d18a0c1f2618 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/ShowDisabledIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c663093e8d72b94fa8a7dc9ce8bb201 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/ShowIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a44514d41be465841a24412fe750ec91 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Condition/ShowWarningIfAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa59e360dc83e0a4b89dd71a73f6edcf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fac952717ac8d04b84e05d6f4c20763 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/BeginGroupAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0d7dc7dad1a1242a871d708bd08dbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/BeginHorizontalAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d941cfc7276fb345a0e3fcc41d75b5a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/BeginHorizontalGroupAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 916b488f13debc149a401b405cd684ae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/BeginIndentAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4a4333fba3ca1249b550a47776f6109 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/BeginVerticalAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cab62a66a468e9b4c8cd572df471268b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/DynamicHelpAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b767f4e261e1fc4184ca1b011435cb4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EditorButtonAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c373e55f4e01ebc41a3906868c50ee22 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EndGroupAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0854ff9ba0cc02c4fb8511bde930767f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EndHorizontalAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05c52b9c5c0739944ae63f7c00268473 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EndHorizontalGroupAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 736c8d5185d16a2459f4b1fdd6e0c4b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EndIndentAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4116b535f3ca524eace48d3b2805137 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/EndVerticalAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a083126ca5ad714ea94017d3c34ba98 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/GuiColorAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9f38cd1beaa9a044b8ee7e277dafeb3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/HelpAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3567c6f48f7b6d4aaf965d617c0ea0f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/HighlightAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3797c292515f9a4e8b5a4314ec6576a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/ImageAreaAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 797b2b23c0ef8d74dab28150586ff2a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/IndentAreaAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2b720b9dcbf38047858f04412c5e7d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/LabelAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28e0790e5f1295f48a78cdc4ac49c6c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/LabelWidthAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1536da1dfd9ae6841b99ecd14495488d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/LineAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa44282f373e3e44888721749df4378 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/Decorator/SpaceAreaAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2895a8843bd5c4346925424f838e9085 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyCondition.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Drawers 2 | { 3 | public enum PropertyCondition 4 | { 5 | Valid, 6 | NonValid, 7 | Disabled 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyCondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abbce97698323494db627fef98477965 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyList.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dad488df0a9f01041a304fe7e7557698 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyList/ReorderableListAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 115dd688c9c2d7846a16f022710383c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyList/ReorderableListExposedAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c32c3134f6c5041b2c6a617c6e5a4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertyList/ScrollableItemsAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b42294979f2e4494da3bded81f748c8e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 059cac54eb468fd4c805789166893b23 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/DynamicMinMaxBaseDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf58cb4edac6acb468624e6f9f5ed9c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/DynamicMinMaxSliderAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e530e17d1f788294eb984ddb7d98e3ae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/DynamicRangeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78f04ac5c49f18748abb09d3f3961dd9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/IgnoreParentAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a49b3cd2cc79804b8d6aea300a77157 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/InLineEditorAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1e2b1a81425d5344b423d98a9c92c48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/ReferencePickerAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79a1b5133682db942818cc3b16b59d6e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/PropertySelf/RegexValueAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f73913dbc271cd4c99c75e52793b3bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/TargetType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed52ea20f499eb04d9ea560876e1e783 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/TargetType/SerializedDictionaryDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167e2b393cce7964bb1b5392668b3c10 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxAttributeDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Drawers 2 | { 3 | /// 4 | /// Base class for all drawers based on custom attributes. 5 | /// 6 | public abstract class ToolboxAttributeDrawer : ToolboxDrawer 7 | { } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dff0704660db944cbbfb79bdd6791b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxConditionDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29939c77aa376cb43b229d6b06f63a51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxConditionDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407607f3e462d7a4bad4fa4371716bbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0480dd471b3210f4c90b335322d78dc3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxDecoratorDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd61b4687b23a5a46af1d0476a980e70 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Drawers 2 | { 3 | /// 4 | /// Base class for all drawers used in custom property drawing process. 5 | /// 6 | public abstract class ToolboxDrawer 7 | { } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abd20442c51bdae47ad666aada6264ac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxListPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9f804f8ab509b24590e6acbc1d887a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63a6f8485f816944eb396e8bdda474cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxPropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 149692085778d894c8f66ca079e1388e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxSelfPropertyDrawer.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Toolbox.Editor.Drawers 4 | { 5 | public abstract class ToolboxSelfPropertyDrawer : ToolboxPropertyDrawer where T : ToolboxSelfPropertyAttribute 6 | { } 7 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxSelfPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d155d5e95d022414c8c1fa4f0197eadd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/Toolbox/ToolboxTargetTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69c8dff89aa2b8f48a40857882c79976 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/ToolboxDrawersManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a6939216e93eb34eb34e53dab7eedb9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/ToolboxEditorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f4d07b930397484db44c800e4b40c72 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Drawers/ToolboxPropertyHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59b9ab0776273c244af79f300cc3ce14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Editors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd9eb9bdc8f4b5479338d61bc676ff7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Editors/ToolboxScriptedImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32a6a3c1fb9b15f419c4eba7bfab56ff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Hierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c511c79821505444a93c3f74799b0e90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Hierarchy/HierarchyItemDataType.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor.Hierarchy 2 | { 3 | public enum HierarchyItemDataType 4 | { 5 | Icon, 6 | Toggle, 7 | Tag, 8 | Layer, 9 | Script, 10 | TreeLines 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Hierarchy/HierarchyItemDataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b105d87163c51e409eb9b68972a0c03 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Hierarchy/HierarchyPropertyLabel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72aab03b97ed87e4aa71e9013911af93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Hierarchy/HierarchyTreeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44eac11a2ef019b46908e8e2cd061afe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/IToolboxEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06500ba37111e854bb3ff546c53e1aa8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/IToolboxEditorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90fd4326e0dc0254280c33594e588691 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 732fd653c197d494d8fa0217af74594c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/ChangeIndentScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b672f6f54d4850546888ca6cdc590bce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/DisabledScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7d1f587f16bd624a972905936bdca90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/FixedFieldsScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3697d3f1f6c046f4e8158db4fdee13a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/GuiBackground.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa377dc87ac498644bf9b37a1c6d306e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/PropertyScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24bfec2c5f7ca4442a829f0f78cd574c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/ReorderableList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4219d426aa2b7004ca7d880a7783a5d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/ReorderableListBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cf70592b3d257c44a7f0287db96480a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/SearchablePopup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d5680aebe72417498e093d5da943316 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/ToolboxEditorList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8d59387460ecbf4ab52cf11f5fe2026 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27ab57e21e3484f41a400c5ea540421f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypeAppearanceContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80454d63dd02c0d42b6ac59f8eaee024 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypeConstraintContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2d536076f643b4689c9d04b8b5b2f0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypeConstraintSerializeReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2f4619c41ded3c418dfbcd3d93ea5c7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypeConstraintStandard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79789e5b77277274fa20fbed57488a1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypeField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f3a75051e0f62a45bd84f4d36763f84 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypesCachedCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1c652a61bba0af4c946b01f28117ae8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/Types/TypesEditorCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79255218de0423940a945ec3f922e22c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Internal/ZeroIndentScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa3e2aa54b98eec4ba4927479632543f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Management.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0474bb9eb314af742958e546dba2c098 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Management/ToolboxAssetProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f0626ad1a521874d8d062379729ce6b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Management/ToolboxManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54e127ee98ca5e499c6116ccdacbcc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb68de63f4c017469cd896e0fb2ed6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d547182791e07064ab087b62ab5db90f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/AudioImporter Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/AudioImporter Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Editor Folder Icon Small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Editor Folder Icon Small.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Editor Folder Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Editor Folder Icon.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Material Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Material Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Mesh Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Mesh Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Prefab Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Prefab Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/PrefabModel Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/PrefabModel Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/SceneAsset Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/SceneAsset Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/ScriptableObject Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/ScriptableObject Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Scripts Folder Icon Small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Scripts Folder Icon Small.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Scripts Folder Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Scripts Folder Icon.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Shader Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Shader Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Sprite Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Sprite Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/TextMesh Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/TextMesh Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Texture Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Texture Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Toolbox Icon Small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Toolbox Icon Small.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/Toolbox Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/Toolbox Icon.psd -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Resources/Folder Icons/cs Script Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Editor Toolbox/Editor/Resources/Folder Icons/cs Script Icon.png -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/SceneView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cca29365d790494bbae22d223dc17de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/SceneView/ToolboxEditorSceneViewObjectSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23e85c8e0f6e08041a82bda7b21fdea1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Toolbox.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b845e2499b39be4aab3e6ac2c8aa02a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxDefines.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Editor 2 | { 3 | internal static class ToolboxDefines 4 | { 5 | internal const string defaultListsDefine = "TOOLBOX_FORCE_DEFAULT_LISTS"; 6 | internal const string ignoreEditorDefine = "TOOLBOX_IGNORE_CUSTOM_EDITOR"; 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxDefines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae126f251596a84a88db738b6b238a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10acc2e377badf544a6ec568990c1fc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorGui.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5300eef0c4e8a24479235456f1b24807 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3c083493a517d148a832cb9ce41272a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorHierarchy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22bb36b3fe82c2141aca7deddebd1a09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorLog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39725e63623f3084983634cc790d4204 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorProject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c6e565a2239746479ee7f874529ae57 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorSceneView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baf6be454a6d71f4b9ec44e48e6b0df2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b97690dbca7025a4ebeae4ac93229110 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorSettingsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67bea61b547c6b34b93cfcf774a24412 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxEditorToolbar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76c99bc21200924e972d9fc36e6a990 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxLayoutHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86dd28a458f1df542a9971df6cd55375 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/ToolboxPrefs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a84167541a7adfb40b7f84dbaa5de9c3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 714312bf9da9f6e41a916f633da93f6c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/AssemblyUttility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9819eec002d0dfa4bba43c76f04d191c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/DraggingUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea8d09fdf0133354597cfa6c3b917c7f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/EditorGuiUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 267b0016c4e6dcb4f989ad493bb74b71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/GuiLayoutUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eda7cae1248a7c4bbc6ecf20172c0a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/InspectorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 162186be9bf8ff74184d53d290bd989b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/PrefabUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f171f01987720294989f82500c6d02aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/PropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fa27222745c0184e9ed157d20d9b1f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/ReflectionUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5ab38d9410b184a9c689b2acb82d03 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/ScriptingUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b8163fb13c3d240a94eb344e678cac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Utilities/TypeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bf3a64f9f909ca48962e4e94d609d9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Wizards.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33420690c5af85841905024abd93f883 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Wizards/ScriptableObjectCreationWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f806c9b389858d44a835801069d9977 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Editor/Wizards/ToolboxWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa851672284a43845b3540068666d072 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/EditorSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22cfe70a5513045439caa56ca030c377 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/HOWTO.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c62c309b4525f514b87b900439dcbdbe 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a2bfcb3ebd4a964fa82b9dfb2276205 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4b8d0f996006eb458e1d5302602e1fd 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94efd6707d533dd4283eafdeef7b0213 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e02d98ead6461641b76c0bfc9c1a4e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/CreateInWizardAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace Toolbox.Attributes 5 | { 6 | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] 7 | [Conditional("UNITY_EDITOR")] 8 | public class CreateInWizardAttribute : Attribute 9 | { } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/CreateInWizardAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 664700ba92658a946a3485b6f3c163a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c427ce2e2f5752344bdfbb8e0a5ea85f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/ILabelProcessorAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Attributes.Property 2 | { 3 | /// 4 | /// Temporary interface used to wrap all attributes used to override property labels. 5 | /// 6 | public interface ILabelProcessorAttribute 7 | { } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/ILabelProcessorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2278d4154896434b9a212b6430c4662 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d0b732ee9ee29b4d8dc13dc9366f2ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/AnimationCurveSettingsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e572c536d703b044be1be27fa0b7596 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/AssetPreviewAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26043809a95b02489b8e235b7352fce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/ChildObjectOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c7de6ba9c883a746ac20f7b554322cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/ClampAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cbc9efe0cb90bd4fa35eaf49dff506b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/DirectoryAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f2feb1a20a5094f92e1b7f48834f58 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/EnumFlagAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2342fa3be948e44790b05a48ab20f8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/EnumTogglesAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62704a62e7356ce44b05654434d2ee4d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/FormattedNumberAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0470a26cf0d6fec48b0f28a192159a43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/LabelWidthAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59d1b17ab0a67ba449045cb5c6afede2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/LayerAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96d43e03780dca84aa7477ffdc700516 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/LeftToggleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 288414d2fef8f5342a404588a1e02e2a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/MinMaxSliderAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f43b2e3e727c6ee4e8794d9dd945891a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/NotNullAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d801378871a9c94fadc3f941bf8cce7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/NotPrefabObjectOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 007523f0b04bdd04bb45aec5ce3a44fe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/OnValueChangedAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e455ab901e6da44819b89264a0a70c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/PasswordAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08afcf6e492391847be66948cee638ae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/PrefabObjectOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 982dd0929f4545f4ab3c9da6340a9130 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/PresetAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57d364a7f1597142b90de8bf5380b32 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/ProgressBarAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00a3fa03beb6ce74f9d668a642d7ec5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/SceneDetailsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b48f137af7cb3347815318f38156c05 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/SceneNameAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ae1a800e6ab81408d4546cd73228b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/SceneObjectOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33cf3e6159488d440875a87cc8bc70b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/SearchableEnumAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 420f51aadb888434db00965e7ff68e4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/SuffixAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b59928ab0f495b94e9f4adc0601ce555 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/TagSelectorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2124d9baf70d2ee40abc0cc7f250d866 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Regular/TypeConstraintAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 192d0f4bda259e24ebc41542788a8314 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Special.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1df25aafd3c6de4e897fc93929a3aaf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Special/HideLabelAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14b78df3957f53c48a3a591d6cfe90da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Special/LabelByChildAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3442354e2d581b489a4533d8ff99289 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Special/NewLabelAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a552181da5793084ebd30bd6dd9b9b83 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce84d2dbf2cf0834481b8fbc0f2d32a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ArchetypeAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df6ffe7132ae8bd458cf012615e0326b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ArchetypeAttributes/TitleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afa5b960081218643b928b3cb3f2364a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9275be8d578ca7b439fae42bb9911a15 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/ComparisonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60fc78b75de52784c89465b3b9738606 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/DisableAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f585b71c407c3b241b49758529483782 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/DisableIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b489a594cd3e374aadcbdfe6ea6312e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/EnableIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6542740c0c17ab448b66515cf1dfbb0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/HideAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a48752bbb965e5848ba2ba4c365fe2d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/HideDisabledIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 413c7bc9bf700b1479605c8b2d25f832 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/HideIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0216596ec088b3d49a0c3e8c29df0a7a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/ShowDisabledIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3544f5af3506042abc0bcd201529df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ConditionAttributes/ShowIfAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 011d3ba38163a8141afd9c4d6006efcf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a1b711abd71e034abbdca9b86ac02e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/EndGroupAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6162dc4b5fe3cb44c94f3d420c51b3e7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/EndIndentAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd5972020a43a47408b8503191da1c99 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/GroupStyle.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine 2 | { 3 | public enum GroupStyle 4 | { 5 | Round, 6 | Boxed 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/GroupStyle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42fc52af7fb44884490b52c427e6976f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/GuiColorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ad57d8ceb925e4aa22cca5c0554b52 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/HelpAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4710121f355955d46800eacd3798784a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/HighlightAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0753724e766a59942abbf3d21089d755 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/ImageAreaAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cab8a0ccefee21a458d0b2bfddf0e36e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/LabelAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c30ec089a67fd6d4b8ac72c144670b0a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/LineAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d65f87142495e8047b8a6747be850389 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/SpaceAreaAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c54f5206fe3d1a4d99f59c9e1bc9472 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/UnityMessageType.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine 2 | { 3 | public enum UnityMessageType 4 | { 5 | None, 6 | Info, 7 | Warning, 8 | Error 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/DecoratorAttributes/UnityMessageType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4a02e73d5ee2e44388078edcb082ae5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/PropertyListAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7be7a729011c5c4db4751a5224498db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/PropertyListAttributes/ListStyle.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEngine 2 | { 3 | public enum ListStyle 4 | { 5 | Round, 6 | Boxed, 7 | Lined 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/PropertyListAttributes/ListStyle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a709f8f155a7b5e4cbb55d48f074f47a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/PropertySelfAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec61f0fe6cb39d741be332a6de3623f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxArchetypeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03d09ae7a6f4582449cdd2c655ff0a31 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace UnityEngine 5 | { 6 | /// 7 | /// Base class for all attributes used within Component Editors. 8 | /// 9 | [Conditional("UNITY_EDITOR")] 10 | public abstract class ToolboxAttribute : Attribute 11 | { } 12 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19d79f6e625244e449a5566e0b647d85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxConditionAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace UnityEngine 5 | { 6 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 7 | [Conditional("UNITY_EDITOR")] 8 | public abstract class ToolboxConditionAttribute : ToolboxAttribute 9 | { } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxConditionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce20adad1f34d04bac994528efcc8b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxDecoratorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f37cac6ca4d779b4e87f366c10125d34 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxListPropertyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace UnityEngine 5 | { 6 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 7 | [Conditional("UNITY_EDITOR")] 8 | public class ToolboxListPropertyAttribute : ToolboxPropertyAttribute 9 | { } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxListPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb8a096c05772c341bb857712eb8798c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxPropertyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace UnityEngine 5 | { 6 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 7 | [Conditional("UNITY_EDITOR")] 8 | public abstract class ToolboxPropertyAttribute : ToolboxAttribute 9 | { } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c59baa8396b84b04daab155f11ff28a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxSelfPropertyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | 4 | namespace UnityEngine 5 | { 6 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 7 | [Conditional("UNITY_EDITOR")] 8 | public abstract class ToolboxSelfPropertyAttribute : ToolboxPropertyAttribute 9 | { } 10 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Attributes/Property/Toolbox/ToolboxSelfPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0b82f7298326c47a30bed228125bb3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ef7ca9e36c7af442b43f0b6a4c08215 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Extensions/RectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d73ee7ac368c39545b33cb0ff8f0bf9e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Extensions/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 211fa09380d61c543973f96b27d87141 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c422f5efbb0f4d94297a48755fbe306c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders/FolderData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 571656423e7c7024ea709ce9009cfe15 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders/FolderDataType.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Folders 2 | { 3 | public enum FolderDataType 4 | { 5 | Path, 6 | Name 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders/FolderDataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d87c1403eec547b4f80d466b4c2dfa5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders/FolderIconType.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Folders 2 | { 3 | public enum FolderIconType 4 | { 5 | Custom, 6 | Editor 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Folders/FolderIconType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac05f3425c2d59b43a1161838d0f463a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d954a746a809343419178530849e0a4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SceneData.cs: -------------------------------------------------------------------------------- 1 | namespace Toolbox.Serialization 2 | { 3 | internal class SceneData 4 | { 5 | public string SceneName { get; set; } 6 | public string ScenePath { get; set; } 7 | public int BuildIndex { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SceneData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eca7a83f29f423248bb7cbb9c3e14401 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SceneSerializationProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10115db7d10ebb44bb574a68e78b333d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SceneSerializationUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57bea09f5228ee94f901e3b0bb7abd13 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SerializedDateTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9de638ab820e984ca7619c5ca591497 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SerializedDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd45d60b51c3bb24fbcab0d70ab47507 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SerializedDirectory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c16f22b1bec5ea64a9f6b6bbc9e136bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SerializedScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f66ffed5e82771a45a2235e9209330ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Serialization/SerializedType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d411d9a1aae30b43abe23cc2279242b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Toolbox.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Toolbox", 3 | "references": [], 4 | "optionalUnityReferences": [], 5 | "includePlatforms": [], 6 | "excludePlatforms": [], 7 | "allowUnsafeCode": false, 8 | "overrideReferences": false, 9 | "precompiledReferences": [], 10 | "autoReferenced": true, 11 | "defineConstraints": [] 12 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Runtime/Toolbox.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 696a0953692949b40bec8730e64e1fdd 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2275c38156f0ee14fa809c3ea4758c42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c03699e8c3efeb46b39072681a98690 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/ComparisonTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc5231de8e4602449bc9b1cae8c9d61c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/ExtractionTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c971f04aa6aa604fbf47436a16fb2c0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/PropertyUtilitesTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b36be466b5b531e439ae8707760a027a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/ReorderableListTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b619798a835ae4e889077fead12f59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/SerializationTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9368bc4d609f08d4388586cb43e03db3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/TestObject1.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Toolbox.Editor.Tests 4 | { 5 | internal class TestObject1 : ScriptableObject 6 | { 7 | #if UNITY_2020_1_OR_NEWER 8 | public SerializedDictionary var1; 9 | #endif 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/TestObject1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec4212faa891983458f00c2fa795d5b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/TestObject2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 491db11519f0e7a4da0411e2d0845271 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/TestsUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15b7815dbb0e978428a3812b73a80c85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/Toolbox.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68283077bb22024daadd96638802789 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Editor/TypesFilteringTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53f9360cece7a274e9d7cc2fd41939b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 011361d2c2de60e46878252abb0ca10e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Runtime/RectExtensionsAlignTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca038bc1d5c47b4cbde73bf9fc444a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Runtime/SerializationTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 081eaea2f4848f04fbdb7c1c6c1c9bd3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/Tests/Runtime/Toolbox.Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f15eedad2962a747a274ac668994d41 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor Toolbox/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2907910f201ee5241b2173505d3f4865 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15340f7d67db4d6409ae3bbac51f6872 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84fcd1a07c638784a9fa4c54b5b701e0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor Resources/Editor Camera Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Editor Resources/Editor Camera Icon.png -------------------------------------------------------------------------------- /Assets/Examples/Editor Resources/Editor Canvas Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Editor Resources/Editor Canvas Icon.png -------------------------------------------------------------------------------- /Assets/Examples/Editor Resources/Editor Light Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Editor Resources/Editor Light Icon.png -------------------------------------------------------------------------------- /Assets/Examples/Editor Resources/Editor Settings Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Editor Resources/Editor Settings Icon.png -------------------------------------------------------------------------------- /Assets/Examples/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f91d5b7709d3e143a3c18e3b78a855f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63e49a4540bbb17439c335b121d201ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 590c212d7a64d89488d1c8342636db08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/HexColorAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00db4c40312e3464981469dab396505b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/RandomAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 367c9bac1ad7adf468ab9ca8239222b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/Vector2DirectionAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee0a9365ada7be846b536c87efc3ae6d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/Vector2RangeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0a8bce8161a83240b127a013503e374 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/Vector3DirectionAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0ae77d5c1cf7e2479dc332c6d0a97e0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/RegularDrawers/Vector3RangeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb86f47dca5b5b044a9263062a2cda40 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/ToolboxDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1822571481e64a46b75e41c79f2233b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/Drawers/ToolboxDrawers/SampleDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844766182c5c3b4458921e53ae553e5f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1ecca864220631488bc5f0c27254b8c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleScriptedImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b0c5053ed0329240b3d3651502da8b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleScriptedImporterEditor.cs: -------------------------------------------------------------------------------- 1 | #if UNITY_2020_2_OR_NEWER 2 | using Toolbox.Editor.Editors; 3 | using UnityEditor; 4 | 5 | [CustomEditor(typeof(SampleScriptedImporter))] 6 | public class SampleScriptedImporterEditor : ToolboxScriptedImporterEditor 7 | { } 8 | #endif -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleScriptedImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c1d6a26d60c1184a9d41340629dad90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleToolbar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a77f9600b0b8a47499a30150930886b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Editor/SampleWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1bb32b688a40424bb4818611e483779 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab0eb6001d71f6a40bbf2ba23358c828 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Materials/CubeMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7404c70251f9d0045a4aabaa49d83963 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Materials/TerrainMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26a618e7877b8c94f967effc172108f2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Materials/TestMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77b880b983afb544a9b11f719d61037b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf3188b319216b241952d0d516a7fa4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4263a04cf09ace4b8568f054ea426ee 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Prefabs/RedCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5573ca52cac7c2d4cb2536e37e9be1f1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d2327842a3de924a952a3ad1e1d9528 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Samples/Sample.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Samples/Sample.sample -------------------------------------------------------------------------------- /Assets/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48859b6119c63354fb0fad96e1510480 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 726601f5184e65b4db93579be2a4ab5d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f11034f4657f51a47aac14f26410c500 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Scenes/SampleScene/LightingData.asset -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/LightingData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f45668bfc38b4c4bb6229eef4382cbb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 112000000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_dir.png -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_light.exr -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_shadowmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Scenes/SampleScene/Lightmap-0_comp_shadowmask.png -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Scenes/SampleScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Examples/Scenes/SampleSceneSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aebe3ea7163bc84194ae1d81c850abb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/StartupScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f78d57e2b3a7c4d41b107b859d04f165 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scriptables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d94ac77c48a9ee4081940291a44f7fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scriptables/Sample Scriptable Object.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db4d3326eeaee8c41890cfd74a6f2170 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 344f8854d0924a94bbe11bdaf3922c7d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6f41e60c0f3d6345b61211474caa0a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/HexColorAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | /// 5 | /// Draws color picker and sets color hex code. 6 | /// 7 | /// Supported types: . 8 | /// 9 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 10 | public class HexColorAttribute : PropertyAttribute 11 | { } -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/HexColorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76460d20ba015004db3f098da237e62a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/RandomAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfec9f531f5069b42abdd5c6fa7dc64c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/SampleAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class SampleAttribute : ToolboxDecoratorAttribute 4 | { } 5 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/SampleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16826b8ad3d38504facb023a4ef9aabb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/Vector2DirectionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1d75cdc686e028469a0b43193f82d35 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/Vector2RangeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfd69c4caaad04143ba1797f2abfe1c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/Vector3DirectionAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | /// 5 | /// Allows to pick valid 3D direction value. 6 | /// Supported types: . 7 | /// 8 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] 9 | public class Vector3DirectionAttribute : PropertyAttribute 10 | { } -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/Vector3DirectionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d1313c39ed767040a30062136cb2a31 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Attributes/Vector3RangeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167fb96e189345f4ebab61385059724e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c96bc1945c12e5246b1faac636a63516 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd6beebd3a14d014baec37e933957a0e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b063741cf66f777438ae67b7df2b87bd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour4.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 288fcefaca2ef1e41a33e74640d04833 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour5.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d496befd3f810f54d82e3f23eca099ff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour6.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0323e91bfeae1c488545bee770d3fa7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleBehaviour7.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c48a231d0fb97494d948757fb057b3ea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleSceneLoader.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.SceneManagement; 3 | 4 | public class SampleSceneLoader : MonoBehaviour 5 | { 6 | [SerializeField, SceneDetails] 7 | private SerializedScene scene; 8 | 9 | private void Start() 10 | { 11 | SceneManager.LoadScene(scene.BuildIndex); 12 | } 13 | } -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleSceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dfb06d72ca845d47aeaad86daebda95 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleScriptableObject.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | using Toolbox.Attributes; 4 | 5 | [CreateInWizard] 6 | public class SampleScriptableObject : ScriptableObject 7 | { 8 | public bool var1; 9 | [EnableIf(nameof(var1), true)] 10 | public int var2; 11 | public string[] vars; 12 | } -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SampleScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d1935b7b3931904e91b76d6e7e5e0f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SceneLoader.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.SceneManagement; 3 | 4 | public class SceneLoader : MonoBehaviour 5 | { 6 | [SerializeField, SceneDetails] 7 | private SerializedScene scene; 8 | 9 | private void Start() 10 | { 11 | SceneManager.LoadScene(scene.BuildIndex); 12 | } 13 | } -------------------------------------------------------------------------------- /Assets/Examples/Scripts/SceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3515fc2458d4146449db76ec05b91a23 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Examples/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aca7b2f5ad8f4e47885c5ad43575b64 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Shaders/RandomTiling.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be1b2d28116bc9846849290f03863545 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Examples/Shaders/TestShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 026435d85e5fd1f429a0ff9e8492c6b8 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | preprocessorOverride: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Examples/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79780c260b269eb45916352057990f90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Sounds/ImpactSound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Sounds/ImpactSound.mp3 -------------------------------------------------------------------------------- /Assets/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13173e4585d898a45af1e1ab95a49231 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Textures/TerrainTex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Assets/Examples/Textures/TerrainTex.jpg -------------------------------------------------------------------------------- /Docs/animationcurvesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/animationcurvesettings.png -------------------------------------------------------------------------------- /Docs/assetpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/assetpreview.png -------------------------------------------------------------------------------- /Docs/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/button.png -------------------------------------------------------------------------------- /Docs/createso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/createso.png -------------------------------------------------------------------------------- /Docs/customshader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/customshader.png -------------------------------------------------------------------------------- /Docs/decorators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/decorators.png -------------------------------------------------------------------------------- /Docs/dictionary1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/dictionary1.png -------------------------------------------------------------------------------- /Docs/dictionary2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/dictionary2.png -------------------------------------------------------------------------------- /Docs/dictionary3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/dictionary3.png -------------------------------------------------------------------------------- /Docs/directory1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/directory1.png -------------------------------------------------------------------------------- /Docs/directory2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/directory2.png -------------------------------------------------------------------------------- /Docs/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/disabled.png -------------------------------------------------------------------------------- /Docs/enableif1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/enableif1.png -------------------------------------------------------------------------------- /Docs/enableif2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/enableif2.png -------------------------------------------------------------------------------- /Docs/enumsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/enumsearch.png -------------------------------------------------------------------------------- /Docs/enumtoggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/enumtoggles.png -------------------------------------------------------------------------------- /Docs/formattednumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/formattednumber.png -------------------------------------------------------------------------------- /Docs/helpbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/helpbox.png -------------------------------------------------------------------------------- /Docs/hidelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/hidelabel.png -------------------------------------------------------------------------------- /Docs/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/hierarchy.png -------------------------------------------------------------------------------- /Docs/hierarchy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/hierarchy1.png -------------------------------------------------------------------------------- /Docs/hierarchy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/hierarchy2.png -------------------------------------------------------------------------------- /Docs/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/horizontal.png -------------------------------------------------------------------------------- /Docs/ignoreparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/ignoreparent.png -------------------------------------------------------------------------------- /Docs/imagearea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/imagearea.png -------------------------------------------------------------------------------- /Docs/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/indent.png -------------------------------------------------------------------------------- /Docs/inlined1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/inlined1.png -------------------------------------------------------------------------------- /Docs/inlined2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/inlined2.png -------------------------------------------------------------------------------- /Docs/inlined3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/inlined3.png -------------------------------------------------------------------------------- /Docs/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/inspector.png -------------------------------------------------------------------------------- /Docs/labelbychild1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/labelbychild1.png -------------------------------------------------------------------------------- /Docs/labelbychild2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/labelbychild2.png -------------------------------------------------------------------------------- /Docs/labelwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/labelwidth.png -------------------------------------------------------------------------------- /Docs/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/layer.png -------------------------------------------------------------------------------- /Docs/lefttoggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/lefttoggle.png -------------------------------------------------------------------------------- /Docs/list1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/list1.png -------------------------------------------------------------------------------- /Docs/list2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/list2.png -------------------------------------------------------------------------------- /Docs/list3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/list3.png -------------------------------------------------------------------------------- /Docs/list4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/list4.png -------------------------------------------------------------------------------- /Docs/minmaxslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/minmaxslider.png -------------------------------------------------------------------------------- /Docs/newlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/newlabel.png -------------------------------------------------------------------------------- /Docs/notnull1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/notnull1.png -------------------------------------------------------------------------------- /Docs/notnull2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/notnull2.png -------------------------------------------------------------------------------- /Docs/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/password.png -------------------------------------------------------------------------------- /Docs/preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/preset.png -------------------------------------------------------------------------------- /Docs/progressbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/progressbar1.png -------------------------------------------------------------------------------- /Docs/progressbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/progressbar2.png -------------------------------------------------------------------------------- /Docs/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/project1.png -------------------------------------------------------------------------------- /Docs/project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/project2.png -------------------------------------------------------------------------------- /Docs/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/random.png -------------------------------------------------------------------------------- /Docs/readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/readonly.png -------------------------------------------------------------------------------- /Docs/referencepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/referencepicker.png -------------------------------------------------------------------------------- /Docs/scenedetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/scenedetails.png -------------------------------------------------------------------------------- /Docs/scenename1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/scenename1.png -------------------------------------------------------------------------------- /Docs/scenename2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/scenename2.png -------------------------------------------------------------------------------- /Docs/sceneview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/sceneview.png -------------------------------------------------------------------------------- /Docs/scrollableitems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/scrollableitems.png -------------------------------------------------------------------------------- /Docs/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/separator.png -------------------------------------------------------------------------------- /Docs/serializeddate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializeddate.png -------------------------------------------------------------------------------- /Docs/serializeddirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializeddirectory.png -------------------------------------------------------------------------------- /Docs/serializedscene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializedscene.png -------------------------------------------------------------------------------- /Docs/serializedtype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializedtype.png -------------------------------------------------------------------------------- /Docs/serializereferencegenerics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializereferencegenerics.png -------------------------------------------------------------------------------- /Docs/serializereferenceoperations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/serializereferenceoperations.png -------------------------------------------------------------------------------- /Docs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/settings.png -------------------------------------------------------------------------------- /Docs/showif1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/showif1.png -------------------------------------------------------------------------------- /Docs/showif2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/showif2.png -------------------------------------------------------------------------------- /Docs/suffix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/suffix.png -------------------------------------------------------------------------------- /Docs/tagselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/tagselector.png -------------------------------------------------------------------------------- /Docs/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/title.png -------------------------------------------------------------------------------- /Docs/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/toolbar.png -------------------------------------------------------------------------------- /Docs/utils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/Docs/utils.png -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Examples/Scenes/SampleScene.unity 10 | guid: f11034f4657f51a47aac14f26410c500 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.19f1 2 | m_EditorVersionWithRevision: 2021.3.19f1 (c9714fde33b6) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arimger/Unity-Editor-Toolbox/8c7112e67dbb28c783d961ee235fbd837ff5fe13/ProjectSettings/boot.config --------------------------------------------------------------------------------