├── .github └── FUNDING.yml ├── Attributes.meta ├── Attributes ├── AttributeBase.cs ├── AttributeBase.cs.meta ├── AttributeBaseDrawer.cs ├── AttributeBaseDrawer.cs.meta ├── AutoPropertyAttribute.cs ├── AutoPropertyAttribute.cs.meta ├── ButtonMethodAttribute.cs ├── ButtonMethodAttribute.cs.meta ├── CharactersRangeAttribute.cs ├── CharactersRangeAttribute.cs.meta ├── ConditionalFieldAttribute.cs ├── ConditionalFieldAttribute.cs.meta ├── ConstantsSelectionAttribute.cs ├── ConstantsSelectionAttribute.cs.meta ├── DefinedValuesAttribute.cs ├── DefinedValuesAttribute.cs.meta ├── DisplayInspectorAttribute.cs ├── DisplayInspectorAttribute.cs.meta ├── DisplayPreviewAttribute.cs ├── DisplayPreviewAttribute.cs.meta ├── FoldoutAttribute.cs ├── FoldoutAttribute.cs.meta ├── InitializationFieldAttribute.cs ├── InitializationFieldAttribute.cs.meta ├── LayerAttribute.cs ├── LayerAttribute.cs.meta ├── MaxValueAttribute.cs ├── MaxValueAttribute.cs.meta ├── MinMaxRangeAttribute.cs ├── MinMaxRangeAttribute.cs.meta ├── MinValueAttribute.cs ├── MinValueAttribute.cs.meta ├── MustBeAssignedAttribute.cs ├── MustBeAssignedAttribute.cs.meta ├── MustBeAssignedConditionalFieldExclude.cs ├── MustBeAssignedConditionalFieldExclude.cs.meta ├── OverrideLabelAttribute.cs ├── OverrideLabelAttribute.cs.meta ├── PositiveValueOnlyAttribute.cs ├── PositiveValueOnlyAttribute.cs.meta ├── RangeVectorAttribute.cs ├── RangeVectorAttribute.cs.meta ├── ReadOnlyAttribute.cs ├── ReadOnlyAttribute.cs.meta ├── RegexStringAttribute.cs ├── RegexStringAttribute.cs.meta ├── RequireLayerAttribute.cs ├── RequireLayerAttribute.cs.meta ├── RequireLayerOtRagAttributeHandler.cs ├── RequireLayerOtRagAttributeHandler.cs.meta ├── RequireTagAttribute.cs ├── RequireTagAttribute.cs.meta ├── SceneAttribute.cs ├── SceneAttribute.cs.meta ├── SearchableEnumAttribute.cs ├── SearchableEnumAttribute.cs.meta ├── SeparatorAttribute.cs ├── SeparatorAttribute.cs.meta ├── SpriteLayerAttribute.cs ├── SpriteLayerAttribute.cs.meta ├── TagAttribute.cs ├── TagAttribute.cs.meta ├── TopmostComponentAttribute.cs └── TopmostComponentAttribute.cs.meta ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Extensions.meta ├── Extensions ├── EditorExtensions.meta ├── EditorExtensions │ ├── MyDefinesUtility.cs │ ├── MyDefinesUtility.cs.meta │ ├── MyEditor.cs │ ├── MyEditor.cs.meta │ ├── MyEditorAudio.cs │ ├── MyEditorAudio.cs.meta │ ├── MyGUI.cs │ ├── MyGUI.cs.meta │ ├── MyHandles.cs │ ├── MyHandles.cs.meta │ ├── MyIconPresets.cs │ ├── MyIconPresets.cs.meta │ ├── MyScriptableObject.cs │ ├── MyScriptableObject.cs.meta │ ├── MySerializedProperty.cs │ └── MySerializedProperty.cs.meta ├── MyAlgorithms.cs ├── MyAlgorithms.cs.meta ├── MyCollections.cs ├── MyCollections.cs.meta ├── MyColor.cs ├── MyColor.cs.meta ├── MyCommonConstants.cs ├── MyCommonConstants.cs.meta ├── MyComponentUtility.cs ├── MyComponentUtility.cs.meta ├── MyCoroutines.cs ├── MyCoroutines.cs.meta ├── MyDebug.cs ├── MyDebug.cs.meta ├── MyDelayedActions.cs ├── MyDelayedActions.cs.meta ├── MyExtensions.cs ├── MyExtensions.cs.meta ├── MyGizmos.cs ├── MyGizmos.cs.meta ├── MyInput.cs ├── MyInput.cs.meta ├── MyLayers.cs ├── MyLayers.cs.meta ├── MyMath.cs ├── MyMath.cs.meta ├── MyNavMesh.cs ├── MyNavMesh.cs.meta ├── MyObsoleteExtensions.cs ├── MyObsoleteExtensions.cs.meta ├── MyPhysics.cs ├── MyPhysics.cs.meta ├── MyPhysicsExtensions.cs ├── MyPhysicsExtensions.cs.meta ├── MyQuaternionExtensions.cs ├── MyQuaternionExtensions.cs.meta ├── MyReflection.cs ├── MyReflection.cs.meta ├── MyRegex.cs ├── MyRegex.cs.meta ├── MyString.cs ├── MyString.cs.meta ├── MyTexture.cs ├── MyTexture.cs.meta ├── MyUI.cs ├── MyUI.cs.meta ├── MyUnityEventExtensions.cs ├── MyUnityEventExtensions.cs.meta ├── MyVectors.cs ├── MyVectors.cs.meta ├── TransformShakeExtension.cs └── TransformShakeExtension.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── MyBox.asmdef ├── MyBox.asmdef.meta ├── README.md ├── README.md.meta ├── TODO.md ├── TODO.md.meta ├── Tools.meta ├── Tools ├── AssetPresetPreprocessor.meta ├── AssetPresetPreprocessor │ ├── AssetPresetPreprocessor.cs │ ├── AssetPresetPreprocessor.cs.meta │ ├── AssetsPresetPreprocessBase.cs │ ├── AssetsPresetPreprocessBase.cs.meta │ ├── AssetsPresetPreprocessEditor.cs │ └── AssetsPresetPreprocessEditor.cs.meta ├── Features.meta ├── Features │ ├── AutoSaveFeature.cs │ ├── AutoSaveFeature.cs.meta │ ├── CleanEmptyDirectoriesFeature.cs │ ├── CleanEmptyDirectoriesFeature.cs.meta │ ├── CollapsableEventDrawer.cs │ ├── CollapsableEventDrawer.cs.meta │ ├── IPrepareFeature.cs │ ├── IPrepareFeature.cs.meta │ ├── MoveComponentInInspectorMenuItems.cs │ ├── MoveComponentInInspectorMenuItems.cs.meta │ ├── SceneViewBookmarkHotkeys.cs │ ├── SceneViewBookmarkHotkeys.cs.meta │ ├── SelectionHistoryHotkeys.cs │ ├── SelectionHistoryHotkeys.cs.meta │ ├── ToggleInspectorDebugHotkey.cs │ ├── ToggleInspectorDebugHotkey.cs.meta │ ├── ToggleInspectorLockHotkey.cs │ └── ToggleInspectorLockHotkey.cs.meta ├── ImageStringConverter.meta ├── ImageStringConverter │ ├── ImageStringConverter.cs │ ├── ImageStringConverter.cs.meta │ ├── ImageToStringConverterEditor.cs │ └── ImageToStringConverterEditor.cs.meta ├── Internal.meta ├── Internal │ ├── ConditionalData.cs │ ├── ConditionalData.cs.meta │ ├── ConditionalUtility.cs │ ├── ConditionalUtility.cs.meta │ ├── CustomDrawerUtility.cs │ ├── CustomDrawerUtility.cs.meta │ ├── MyBoxInternalPath.cs │ ├── MyBoxInternalPath.cs.meta │ ├── MyBoxMenuItems.cs │ ├── MyBoxMenuItems.cs.meta │ ├── MyBoxSettings.cs │ ├── MyBoxSettings.cs.meta │ ├── MyBoxUtilities.cs │ ├── MyBoxUtilities.cs.meta │ ├── MyBoxVersion.cs │ ├── MyBoxVersion.cs.meta │ ├── MyBoxWindow.cs │ ├── MyBoxWindow.cs.meta │ ├── SearchablePopup.cs │ ├── SearchablePopup.cs.meta │ ├── UnityObjectEditor.cs │ └── UnityObjectEditor.cs.meta ├── MyEditorEvents.cs ├── MyEditorEvents.cs.meta ├── MyEditorEventsBehaviorHandler.cs ├── MyEditorEventsBehaviorHandler.cs.meta ├── MySceneBundle.cs ├── MySceneBundle.cs.meta ├── TimeTest.cs ├── TimeTest.cs.meta ├── Undone.meta ├── Undone │ ├── AnimationCreator.cs │ ├── AnimationCreator.cs.meta │ ├── EmbeddedAnimationCreator.cs │ ├── EmbeddedAnimationCreator.cs.meta │ ├── GLDraw.cs │ ├── GLDraw.cs.meta │ ├── MyLogger.cs │ ├── MyLogger.cs.meta │ ├── SerializedPropertyViewer.cs │ └── SerializedPropertyViewer.cs.meta ├── WarningsPool.cs └── WarningsPool.cs.meta ├── Types.meta ├── Types ├── AnimationStateReference.cs ├── AnimationStateReference.cs.meta ├── AssetFolderPath.cs ├── AssetFolderPath.cs.meta ├── AssetPath.cs ├── AssetPath.cs.meta ├── Billboard.cs ├── Billboard.cs.meta ├── CollectionWrapper.cs ├── CollectionWrapper.cs.meta ├── ColliderGizmo.cs ├── ColliderGizmo.cs.meta ├── ColliderToMesh.cs ├── ColliderToMesh.cs.meta ├── CommentaryComponent.cs ├── CommentaryComponent.cs.meta ├── CoroutineGroup.cs ├── CoroutineGroup.cs.meta ├── EditorTypes.meta ├── EditorTypes │ ├── ConditionallyColoredGUIBlock.cs │ ├── ConditionallyColoredGUIBlock.cs.meta │ ├── ConditionallyEnabledGUIBlock.cs │ ├── ConditionallyEnabledGUIBlock.cs.meta │ ├── DraggableHandler.cs │ ├── DraggableHandler.cs.meta │ ├── EditorPrefsBool.cs │ ├── EditorPrefsBool.cs.meta │ ├── EditorPrefsFloat.cs │ ├── EditorPrefsFloat.cs.meta │ ├── EditorPrefsInt.cs │ ├── EditorPrefsInt.cs.meta │ ├── EditorPrefsString.cs │ ├── EditorPrefsString.cs.meta │ ├── EditorPrefsType.cs │ ├── EditorPrefsType.cs.meta │ ├── EditorPrefsVector3.cs │ ├── EditorPrefsVector3.cs.meta │ ├── EditorWithSubEditors.cs │ ├── EditorWithSubEditors.cs.meta │ ├── IndentBlock.cs │ ├── IndentBlock.cs.meta │ ├── ReorderableCollection.cs │ ├── ReorderableCollection.cs.meta │ ├── SceneClickHandler.cs │ ├── SceneClickHandler.cs.meta │ ├── ScrollViewBlock.cs │ └── ScrollViewBlock.cs.meta ├── FPSCounter.cs ├── FPSCounter.cs.meta ├── GUID.meta ├── GUID │ ├── Credits.txt │ ├── Credits.txt.meta │ ├── GUIDEditor.meta │ ├── GUIDEditor │ │ ├── GuidComponentDrawer.cs │ │ ├── GuidComponentDrawer.cs.meta │ │ ├── GuidReferenceDrawer.cs │ │ └── GuidReferenceDrawer.cs.meta │ ├── GuidComponent.cs │ ├── GuidComponent.cs.meta │ ├── GuidManager.cs │ ├── GuidManager.cs.meta │ ├── GuidReference.cs │ └── GuidReference.cs.meta ├── MinMax.cs ├── MinMax.cs.meta ├── MyCursor.cs ├── MyCursor.cs.meta ├── MyDictionary.cs ├── MyDictionary.cs.meta ├── Optional.cs ├── Optional.cs.meta ├── OptionalMinMax.cs ├── OptionalMinMax.cs.meta ├── PlayerPrefsBool.cs ├── PlayerPrefsBool.cs.meta ├── PlayerPrefsFloat.cs ├── PlayerPrefsFloat.cs.meta ├── PlayerPrefsInt.cs ├── PlayerPrefsInt.cs.meta ├── PlayerPrefsString.cs ├── PlayerPrefsString.cs.meta ├── PlayerPrefsType.cs ├── PlayerPrefsType.cs.meta ├── PlayerPrefsVector2.cs ├── PlayerPrefsVector2.cs.meta ├── PlayerPrefsVector2Int.cs ├── PlayerPrefsVector2Int.cs.meta ├── PlayerPrefsVector3.cs ├── PlayerPrefsVector3.cs.meta ├── PlayerPrefsVector3Int.cs ├── PlayerPrefsVector3Int.cs.meta ├── Reorderable.cs ├── Reorderable.cs.meta ├── SceneReference.cs ├── SceneReference.cs.meta ├── Singleton.cs ├── Singleton.cs.meta ├── StateOnAwake.cs ├── StateOnAwake.cs.meta ├── TransformData.cs ├── TransformData.cs.meta ├── UIFollow.cs ├── UIFollow.cs.meta ├── UIImageBasedButton.cs ├── UIImageBasedButton.cs.meta ├── UIRelativePosition.cs ├── UIRelativePosition.cs.meta ├── UISizeBy.cs └── UISizeBy.cs.meta ├── package.json └── package.json.meta /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://ko-fi.com/mybox"] 2 | -------------------------------------------------------------------------------- /Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes.meta -------------------------------------------------------------------------------- /Attributes/AttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/AttributeBase.cs -------------------------------------------------------------------------------- /Attributes/AttributeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 816fc9d7c08c47f8b84318dce8cecf88 3 | timeCreated: 1582017264 -------------------------------------------------------------------------------- /Attributes/AttributeBaseDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/AttributeBaseDrawer.cs -------------------------------------------------------------------------------- /Attributes/AttributeBaseDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce6a191490f7425a984c36a53cebd36d 3 | timeCreated: 1582017102 -------------------------------------------------------------------------------- /Attributes/AutoPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/AutoPropertyAttribute.cs -------------------------------------------------------------------------------- /Attributes/AutoPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5234d76d99eb402f89f4a35810990c26 3 | timeCreated: 1554718448 -------------------------------------------------------------------------------- /Attributes/ButtonMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ButtonMethodAttribute.cs -------------------------------------------------------------------------------- /Attributes/ButtonMethodAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ButtonMethodAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/CharactersRangeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/CharactersRangeAttribute.cs -------------------------------------------------------------------------------- /Attributes/CharactersRangeAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/CharactersRangeAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/ConditionalFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ConditionalFieldAttribute.cs -------------------------------------------------------------------------------- /Attributes/ConditionalFieldAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ConditionalFieldAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/ConstantsSelectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ConstantsSelectionAttribute.cs -------------------------------------------------------------------------------- /Attributes/ConstantsSelectionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d93e4517d0ec49138d37edab20cacd2f 3 | timeCreated: 1582028131 -------------------------------------------------------------------------------- /Attributes/DefinedValuesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/DefinedValuesAttribute.cs -------------------------------------------------------------------------------- /Attributes/DefinedValuesAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/DefinedValuesAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/DisplayInspectorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/DisplayInspectorAttribute.cs -------------------------------------------------------------------------------- /Attributes/DisplayInspectorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/DisplayInspectorAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/DisplayPreviewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/DisplayPreviewAttribute.cs -------------------------------------------------------------------------------- /Attributes/DisplayPreviewAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 945f93293cd2e024eb8759ee2147d61f -------------------------------------------------------------------------------- /Attributes/FoldoutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/FoldoutAttribute.cs -------------------------------------------------------------------------------- /Attributes/FoldoutAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/FoldoutAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/InitializationFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/InitializationFieldAttribute.cs -------------------------------------------------------------------------------- /Attributes/InitializationFieldAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd5ef49202d6492bb39be27d203b0163 3 | timeCreated: 1588577864 -------------------------------------------------------------------------------- /Attributes/LayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/LayerAttribute.cs -------------------------------------------------------------------------------- /Attributes/LayerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/LayerAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/MaxValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MaxValueAttribute.cs -------------------------------------------------------------------------------- /Attributes/MaxValueAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8930225c73d74e5dbb7784e4c97eb1ef 3 | timeCreated: 1582014887 -------------------------------------------------------------------------------- /Attributes/MinMaxRangeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MinMaxRangeAttribute.cs -------------------------------------------------------------------------------- /Attributes/MinMaxRangeAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MinMaxRangeAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/MinValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MinValueAttribute.cs -------------------------------------------------------------------------------- /Attributes/MinValueAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a6fc14799014e3ea82c8158bd477aca 3 | timeCreated: 1582013139 -------------------------------------------------------------------------------- /Attributes/MustBeAssignedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MustBeAssignedAttribute.cs -------------------------------------------------------------------------------- /Attributes/MustBeAssignedAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MustBeAssignedAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/MustBeAssignedConditionalFieldExclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/MustBeAssignedConditionalFieldExclude.cs -------------------------------------------------------------------------------- /Attributes/MustBeAssignedConditionalFieldExclude.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e15cfc2935144103b5361ee1609fdae4 3 | timeCreated: 1564495831 -------------------------------------------------------------------------------- /Attributes/OverrideLabelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/OverrideLabelAttribute.cs -------------------------------------------------------------------------------- /Attributes/OverrideLabelAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/OverrideLabelAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/PositiveValueOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/PositiveValueOnlyAttribute.cs -------------------------------------------------------------------------------- /Attributes/PositiveValueOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/PositiveValueOnlyAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/RangeVectorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RangeVectorAttribute.cs -------------------------------------------------------------------------------- /Attributes/RangeVectorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RangeVectorAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ReadOnlyAttribute.cs -------------------------------------------------------------------------------- /Attributes/ReadOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/ReadOnlyAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/RegexStringAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RegexStringAttribute.cs -------------------------------------------------------------------------------- /Attributes/RegexStringAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38cf7a3ca1a04872b56d3cc1d90997b6 3 | timeCreated: 1623076361 -------------------------------------------------------------------------------- /Attributes/RequireLayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RequireLayerAttribute.cs -------------------------------------------------------------------------------- /Attributes/RequireLayerAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a239ed93c95b4382a478c97d2bec7768 3 | timeCreated: 1567174003 -------------------------------------------------------------------------------- /Attributes/RequireLayerOtRagAttributeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RequireLayerOtRagAttributeHandler.cs -------------------------------------------------------------------------------- /Attributes/RequireLayerOtRagAttributeHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e06842e3e6403d984cf0d03b3ff844 3 | timeCreated: 1567412996 -------------------------------------------------------------------------------- /Attributes/RequireTagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/RequireTagAttribute.cs -------------------------------------------------------------------------------- /Attributes/RequireTagAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ab3a785f0a04eeeb2b90de6430cef9e 3 | timeCreated: 1567412854 -------------------------------------------------------------------------------- /Attributes/SceneAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SceneAttribute.cs -------------------------------------------------------------------------------- /Attributes/SceneAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SceneAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/SearchableEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SearchableEnumAttribute.cs -------------------------------------------------------------------------------- /Attributes/SearchableEnumAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SearchableEnumAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/SeparatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SeparatorAttribute.cs -------------------------------------------------------------------------------- /Attributes/SeparatorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SeparatorAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/SpriteLayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SpriteLayerAttribute.cs -------------------------------------------------------------------------------- /Attributes/SpriteLayerAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/SpriteLayerAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/TagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/TagAttribute.cs -------------------------------------------------------------------------------- /Attributes/TagAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/TagAttribute.cs.meta -------------------------------------------------------------------------------- /Attributes/TopmostComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/TopmostComponentAttribute.cs -------------------------------------------------------------------------------- /Attributes/TopmostComponentAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Attributes/TopmostComponentAttribute.cs.meta -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48881cb6a8fc44bba97eb256edc502c8 3 | timeCreated: 1565857492 -------------------------------------------------------------------------------- /Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyDefinesUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyDefinesUtility.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyDefinesUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a74181105a16463fbf581afb2dbd9768 3 | timeCreated: 1704808013 -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyEditor.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyEditor.cs.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyEditorAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyEditorAudio.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyEditorAudio.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f72cf48ca3ff462aa3e2f45ec9abb67a 3 | timeCreated: 1655396168 -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyGUI.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyGUI.cs.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyHandles.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyHandles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyHandles.cs.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyIconPresets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyIconPresets.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyIconPresets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2f80a0e28274befa5a705de0edbf6b2 3 | timeCreated: 1550247722 -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyScriptableObject.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MyScriptableObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MyScriptableObject.cs.meta -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MySerializedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/EditorExtensions/MySerializedProperty.cs -------------------------------------------------------------------------------- /Extensions/EditorExtensions/MySerializedProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1647a9f1d48b4cdcbc9d8c0ed8ec8c5d 3 | timeCreated: 1550229037 -------------------------------------------------------------------------------- /Extensions/MyAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyAlgorithms.cs -------------------------------------------------------------------------------- /Extensions/MyAlgorithms.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyAlgorithms.cs.meta -------------------------------------------------------------------------------- /Extensions/MyCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyCollections.cs -------------------------------------------------------------------------------- /Extensions/MyCollections.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyCollections.cs.meta -------------------------------------------------------------------------------- /Extensions/MyColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyColor.cs -------------------------------------------------------------------------------- /Extensions/MyColor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyColor.cs.meta -------------------------------------------------------------------------------- /Extensions/MyCommonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyCommonConstants.cs -------------------------------------------------------------------------------- /Extensions/MyCommonConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyCommonConstants.cs.meta -------------------------------------------------------------------------------- /Extensions/MyComponentUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyComponentUtility.cs -------------------------------------------------------------------------------- /Extensions/MyComponentUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyComponentUtility.cs.meta -------------------------------------------------------------------------------- /Extensions/MyCoroutines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyCoroutines.cs -------------------------------------------------------------------------------- /Extensions/MyCoroutines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 785844a94ee84f97aed9365809940055 3 | timeCreated: 1565249278 -------------------------------------------------------------------------------- /Extensions/MyDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyDebug.cs -------------------------------------------------------------------------------- /Extensions/MyDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyDebug.cs.meta -------------------------------------------------------------------------------- /Extensions/MyDelayedActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyDelayedActions.cs -------------------------------------------------------------------------------- /Extensions/MyDelayedActions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyDelayedActions.cs.meta -------------------------------------------------------------------------------- /Extensions/MyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyExtensions.cs -------------------------------------------------------------------------------- /Extensions/MyExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyExtensions.cs.meta -------------------------------------------------------------------------------- /Extensions/MyGizmos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyGizmos.cs -------------------------------------------------------------------------------- /Extensions/MyGizmos.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 804109ef525642fbaee14eea876599fd 3 | timeCreated: 1557482430 -------------------------------------------------------------------------------- /Extensions/MyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyInput.cs -------------------------------------------------------------------------------- /Extensions/MyInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyInput.cs.meta -------------------------------------------------------------------------------- /Extensions/MyLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyLayers.cs -------------------------------------------------------------------------------- /Extensions/MyLayers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyLayers.cs.meta -------------------------------------------------------------------------------- /Extensions/MyMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyMath.cs -------------------------------------------------------------------------------- /Extensions/MyMath.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyMath.cs.meta -------------------------------------------------------------------------------- /Extensions/MyNavMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyNavMesh.cs -------------------------------------------------------------------------------- /Extensions/MyNavMesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyNavMesh.cs.meta -------------------------------------------------------------------------------- /Extensions/MyObsoleteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyObsoleteExtensions.cs -------------------------------------------------------------------------------- /Extensions/MyObsoleteExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 885e433f51cc4f69bbca87b575fa41eb 3 | timeCreated: 1622206116 -------------------------------------------------------------------------------- /Extensions/MyPhysics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyPhysics.cs -------------------------------------------------------------------------------- /Extensions/MyPhysics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyPhysics.cs.meta -------------------------------------------------------------------------------- /Extensions/MyPhysicsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyPhysicsExtensions.cs -------------------------------------------------------------------------------- /Extensions/MyPhysicsExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyPhysicsExtensions.cs.meta -------------------------------------------------------------------------------- /Extensions/MyQuaternionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyQuaternionExtensions.cs -------------------------------------------------------------------------------- /Extensions/MyQuaternionExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167efd4d91a646c48ff7d1f3adc0f173 3 | timeCreated: 1720428320 -------------------------------------------------------------------------------- /Extensions/MyReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyReflection.cs -------------------------------------------------------------------------------- /Extensions/MyReflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da93a62ca21e462ea375942c000207ae 3 | timeCreated: 1593627020 -------------------------------------------------------------------------------- /Extensions/MyRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyRegex.cs -------------------------------------------------------------------------------- /Extensions/MyRegex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1403a06229e54d928e7366105c447cb7 3 | timeCreated: 1623083222 -------------------------------------------------------------------------------- /Extensions/MyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyString.cs -------------------------------------------------------------------------------- /Extensions/MyString.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyString.cs.meta -------------------------------------------------------------------------------- /Extensions/MyTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyTexture.cs -------------------------------------------------------------------------------- /Extensions/MyTexture.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyTexture.cs.meta -------------------------------------------------------------------------------- /Extensions/MyUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyUI.cs -------------------------------------------------------------------------------- /Extensions/MyUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyUI.cs.meta -------------------------------------------------------------------------------- /Extensions/MyUnityEventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyUnityEventExtensions.cs -------------------------------------------------------------------------------- /Extensions/MyUnityEventExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adf49d97edca4d30b9de5ada2a4be258 3 | timeCreated: 1694769869 -------------------------------------------------------------------------------- /Extensions/MyVectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyVectors.cs -------------------------------------------------------------------------------- /Extensions/MyVectors.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/MyVectors.cs.meta -------------------------------------------------------------------------------- /Extensions/TransformShakeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Extensions/TransformShakeExtension.cs -------------------------------------------------------------------------------- /Extensions/TransformShakeExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd2d7ed03144d51af5a064aff2d3760 3 | timeCreated: 1569946200 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /MyBox.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/MyBox.asmdef -------------------------------------------------------------------------------- /MyBox.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/MyBox.asmdef.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/README.md.meta -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/TODO.md -------------------------------------------------------------------------------- /TODO.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/TODO.md.meta -------------------------------------------------------------------------------- /Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools.meta -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/AssetPresetPreprocessor.meta -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetPresetPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/AssetPresetPreprocessor/AssetPresetPreprocessor.cs -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetPresetPreprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20ac1f2822354281b5c4455cbf4f9db6 3 | timeCreated: 1550748587 -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetsPresetPreprocessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/AssetPresetPreprocessor/AssetsPresetPreprocessBase.cs -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetsPresetPreprocessBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c732208449492aa9663cba17a80da4 3 | timeCreated: 1550745571 -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetsPresetPreprocessEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/AssetPresetPreprocessor/AssetsPresetPreprocessEditor.cs -------------------------------------------------------------------------------- /Tools/AssetPresetPreprocessor/AssetsPresetPreprocessEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/AssetPresetPreprocessor/AssetsPresetPreprocessEditor.cs.meta -------------------------------------------------------------------------------- /Tools/Features.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features.meta -------------------------------------------------------------------------------- /Tools/Features/AutoSaveFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/AutoSaveFeature.cs -------------------------------------------------------------------------------- /Tools/Features/AutoSaveFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/AutoSaveFeature.cs.meta -------------------------------------------------------------------------------- /Tools/Features/CleanEmptyDirectoriesFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/CleanEmptyDirectoriesFeature.cs -------------------------------------------------------------------------------- /Tools/Features/CleanEmptyDirectoriesFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/CleanEmptyDirectoriesFeature.cs.meta -------------------------------------------------------------------------------- /Tools/Features/CollapsableEventDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/CollapsableEventDrawer.cs -------------------------------------------------------------------------------- /Tools/Features/CollapsableEventDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df244a7360a14c7aa31e54bd3b4763f3 3 | timeCreated: 1579185074 -------------------------------------------------------------------------------- /Tools/Features/IPrepareFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/IPrepareFeature.cs -------------------------------------------------------------------------------- /Tools/Features/IPrepareFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/IPrepareFeature.cs.meta -------------------------------------------------------------------------------- /Tools/Features/MoveComponentInInspectorMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/MoveComponentInInspectorMenuItems.cs -------------------------------------------------------------------------------- /Tools/Features/MoveComponentInInspectorMenuItems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/MoveComponentInInspectorMenuItems.cs.meta -------------------------------------------------------------------------------- /Tools/Features/SceneViewBookmarkHotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/SceneViewBookmarkHotkeys.cs -------------------------------------------------------------------------------- /Tools/Features/SceneViewBookmarkHotkeys.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a61c807ff114572a79e0fd687d2ee30 3 | timeCreated: 1552384509 -------------------------------------------------------------------------------- /Tools/Features/SelectionHistoryHotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/SelectionHistoryHotkeys.cs -------------------------------------------------------------------------------- /Tools/Features/SelectionHistoryHotkeys.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ec1e19b0f91485aab3602dbace52692 3 | timeCreated: 1552383273 -------------------------------------------------------------------------------- /Tools/Features/ToggleInspectorDebugHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/ToggleInspectorDebugHotkey.cs -------------------------------------------------------------------------------- /Tools/Features/ToggleInspectorDebugHotkey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eaaff8d726d485dba777956c339641a 3 | timeCreated: 1666252388 -------------------------------------------------------------------------------- /Tools/Features/ToggleInspectorLockHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/ToggleInspectorLockHotkey.cs -------------------------------------------------------------------------------- /Tools/Features/ToggleInspectorLockHotkey.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Features/ToggleInspectorLockHotkey.cs.meta -------------------------------------------------------------------------------- /Tools/ImageStringConverter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b84cc01ef992446fa625eaa096df0e9b 3 | timeCreated: 1550247432 -------------------------------------------------------------------------------- /Tools/ImageStringConverter/ImageStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/ImageStringConverter/ImageStringConverter.cs -------------------------------------------------------------------------------- /Tools/ImageStringConverter/ImageStringConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc6dd669bedc4c9692041cf335dfa495 3 | timeCreated: 1550247474 -------------------------------------------------------------------------------- /Tools/ImageStringConverter/ImageToStringConverterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/ImageStringConverter/ImageToStringConverterEditor.cs -------------------------------------------------------------------------------- /Tools/ImageStringConverter/ImageToStringConverterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f8a2783431c4464bf7643f078e3e716 3 | timeCreated: 1541488681 -------------------------------------------------------------------------------- /Tools/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal.meta -------------------------------------------------------------------------------- /Tools/Internal/ConditionalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/ConditionalData.cs -------------------------------------------------------------------------------- /Tools/Internal/ConditionalData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dbc9d6ec862469faa39d1d6702d7540 3 | timeCreated: 1654504912 -------------------------------------------------------------------------------- /Tools/Internal/ConditionalUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/ConditionalUtility.cs -------------------------------------------------------------------------------- /Tools/Internal/ConditionalUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/ConditionalUtility.cs.meta -------------------------------------------------------------------------------- /Tools/Internal/CustomDrawerUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/CustomDrawerUtility.cs -------------------------------------------------------------------------------- /Tools/Internal/CustomDrawerUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf1323b9b8d4f0ca805e0d2a409dd07 3 | timeCreated: 1654673209 -------------------------------------------------------------------------------- /Tools/Internal/MyBoxInternalPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxInternalPath.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxInternalPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd4c04bc7f7240958b670871b7e79094 3 | timeCreated: 1566072116 -------------------------------------------------------------------------------- /Tools/Internal/MyBoxMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxMenuItems.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxMenuItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5066814d8294782a0d959988feb2684 3 | timeCreated: 1564492977 -------------------------------------------------------------------------------- /Tools/Internal/MyBoxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxSettings.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxSettings.cs.meta -------------------------------------------------------------------------------- /Tools/Internal/MyBoxUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxUtilities.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2625afd64fa74f3c99c1353ee281bf30 3 | timeCreated: 1573568630 -------------------------------------------------------------------------------- /Tools/Internal/MyBoxVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxVersion.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c2b0cdefbd748bf921af402c44e1b67 3 | timeCreated: 1573637452 -------------------------------------------------------------------------------- /Tools/Internal/MyBoxWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/MyBoxWindow.cs -------------------------------------------------------------------------------- /Tools/Internal/MyBoxWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 635635a0d91a4439a0ab3bf7ae21597a 3 | timeCreated: 1565678068 -------------------------------------------------------------------------------- /Tools/Internal/SearchablePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/SearchablePopup.cs -------------------------------------------------------------------------------- /Tools/Internal/SearchablePopup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a78b82e1f34ca981f57196e3d9a6da 3 | timeCreated: 1655377300 -------------------------------------------------------------------------------- /Tools/Internal/UnityObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Internal/UnityObjectEditor.cs -------------------------------------------------------------------------------- /Tools/Internal/UnityObjectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e53afb9413554e64be65650721f4bb12 3 | timeCreated: 1576668537 -------------------------------------------------------------------------------- /Tools/MyEditorEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/MyEditorEvents.cs -------------------------------------------------------------------------------- /Tools/MyEditorEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d01553cfc6df446786243bccf35573da 3 | timeCreated: 1554719048 -------------------------------------------------------------------------------- /Tools/MyEditorEventsBehaviorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/MyEditorEventsBehaviorHandler.cs -------------------------------------------------------------------------------- /Tools/MyEditorEventsBehaviorHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a9281b1e4e848b1badf486e4c120ff5 3 | timeCreated: 1727780365 -------------------------------------------------------------------------------- /Tools/MySceneBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/MySceneBundle.cs -------------------------------------------------------------------------------- /Tools/MySceneBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fec9f9b806264926bde41b66bc712e03 3 | timeCreated: 1566998981 -------------------------------------------------------------------------------- /Tools/TimeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/TimeTest.cs -------------------------------------------------------------------------------- /Tools/TimeTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/TimeTest.cs.meta -------------------------------------------------------------------------------- /Tools/Undone.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f05e7d49c544ee4840212b56cdb65bb 3 | timeCreated: 1550246901 -------------------------------------------------------------------------------- /Tools/Undone/AnimationCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/AnimationCreator.cs -------------------------------------------------------------------------------- /Tools/Undone/AnimationCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e774eae9d01a483ca895a35b92ac00e4 3 | timeCreated: 1535972539 -------------------------------------------------------------------------------- /Tools/Undone/EmbeddedAnimationCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/EmbeddedAnimationCreator.cs -------------------------------------------------------------------------------- /Tools/Undone/EmbeddedAnimationCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/EmbeddedAnimationCreator.cs.meta -------------------------------------------------------------------------------- /Tools/Undone/GLDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/GLDraw.cs -------------------------------------------------------------------------------- /Tools/Undone/GLDraw.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/GLDraw.cs.meta -------------------------------------------------------------------------------- /Tools/Undone/MyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/MyLogger.cs -------------------------------------------------------------------------------- /Tools/Undone/MyLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/MyLogger.cs.meta -------------------------------------------------------------------------------- /Tools/Undone/SerializedPropertyViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/SerializedPropertyViewer.cs -------------------------------------------------------------------------------- /Tools/Undone/SerializedPropertyViewer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/Undone/SerializedPropertyViewer.cs.meta -------------------------------------------------------------------------------- /Tools/WarningsPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Tools/WarningsPool.cs -------------------------------------------------------------------------------- /Tools/WarningsPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a9d7afad0ff4e5a81f7d8482efba082 3 | timeCreated: 1568633644 -------------------------------------------------------------------------------- /Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types.meta -------------------------------------------------------------------------------- /Types/AnimationStateReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/AnimationStateReference.cs -------------------------------------------------------------------------------- /Types/AnimationStateReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d01a383f214971be2d1767367b2dd0 3 | timeCreated: 1536915504 -------------------------------------------------------------------------------- /Types/AssetFolderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/AssetFolderPath.cs -------------------------------------------------------------------------------- /Types/AssetFolderPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5b0377a856a42d880420a1046711a8a 3 | timeCreated: 1568525388 -------------------------------------------------------------------------------- /Types/AssetPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/AssetPath.cs -------------------------------------------------------------------------------- /Types/AssetPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6bdce985c9d49fc95b005025663e606 3 | timeCreated: 1568526276 -------------------------------------------------------------------------------- /Types/Billboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Billboard.cs -------------------------------------------------------------------------------- /Types/Billboard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Billboard.cs.meta -------------------------------------------------------------------------------- /Types/CollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/CollectionWrapper.cs -------------------------------------------------------------------------------- /Types/CollectionWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4a3ca56e8c64495af77fc8d367d7913 3 | timeCreated: 1589774388 -------------------------------------------------------------------------------- /Types/ColliderGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/ColliderGizmo.cs -------------------------------------------------------------------------------- /Types/ColliderGizmo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/ColliderGizmo.cs.meta -------------------------------------------------------------------------------- /Types/ColliderToMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/ColliderToMesh.cs -------------------------------------------------------------------------------- /Types/ColliderToMesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/ColliderToMesh.cs.meta -------------------------------------------------------------------------------- /Types/CommentaryComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/CommentaryComponent.cs -------------------------------------------------------------------------------- /Types/CommentaryComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee85920dbe024568b894f71d5bb75c1e 3 | timeCreated: 1568812847 -------------------------------------------------------------------------------- /Types/CoroutineGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/CoroutineGroup.cs -------------------------------------------------------------------------------- /Types/CoroutineGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b47a3601930046e7b6ae87cfbb39749a 3 | timeCreated: 1623144790 -------------------------------------------------------------------------------- /Types/EditorTypes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes.meta -------------------------------------------------------------------------------- /Types/EditorTypes/ConditionallyColoredGUIBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ConditionallyColoredGUIBlock.cs -------------------------------------------------------------------------------- /Types/EditorTypes/ConditionallyColoredGUIBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ConditionallyColoredGUIBlock.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/ConditionallyEnabledGUIBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ConditionallyEnabledGUIBlock.cs -------------------------------------------------------------------------------- /Types/EditorTypes/ConditionallyEnabledGUIBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ConditionallyEnabledGUIBlock.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/DraggableHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/DraggableHandler.cs -------------------------------------------------------------------------------- /Types/EditorTypes/DraggableHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/DraggableHandler.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsBool.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsBool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5af0fb19d90647af820764719994083c 3 | timeCreated: 1601034260 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsFloat.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09c02eb3aa8f4a95a8746884d79e9890 3 | timeCreated: 1630590480 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsInt.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: befa908d4bb3444f8be043d501272621 3 | timeCreated: 1641816922 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsString.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsString.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ff7722b2eac41839248b7c9fbb94553 3 | timeCreated: 1596099663 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsType.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa41a242bf946419e7c94a5c7986d1f 3 | timeCreated: 1630589529 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorPrefsVector3.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorPrefsVector3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b34cc5b7bd1483893108b73a64ca0e8 3 | timeCreated: 1596101415 -------------------------------------------------------------------------------- /Types/EditorTypes/EditorWithSubEditors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorWithSubEditors.cs -------------------------------------------------------------------------------- /Types/EditorTypes/EditorWithSubEditors.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/EditorWithSubEditors.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/IndentBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/IndentBlock.cs -------------------------------------------------------------------------------- /Types/EditorTypes/IndentBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/IndentBlock.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/ReorderableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ReorderableCollection.cs -------------------------------------------------------------------------------- /Types/EditorTypes/ReorderableCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8079b7376c142bf9e6258a4daf14cfa 3 | timeCreated: 1550230236 -------------------------------------------------------------------------------- /Types/EditorTypes/SceneClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/SceneClickHandler.cs -------------------------------------------------------------------------------- /Types/EditorTypes/SceneClickHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/SceneClickHandler.cs.meta -------------------------------------------------------------------------------- /Types/EditorTypes/ScrollViewBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ScrollViewBlock.cs -------------------------------------------------------------------------------- /Types/EditorTypes/ScrollViewBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/EditorTypes/ScrollViewBlock.cs.meta -------------------------------------------------------------------------------- /Types/FPSCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/FPSCounter.cs -------------------------------------------------------------------------------- /Types/FPSCounter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/FPSCounter.cs.meta -------------------------------------------------------------------------------- /Types/GUID.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID.meta -------------------------------------------------------------------------------- /Types/GUID/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/Credits.txt -------------------------------------------------------------------------------- /Types/GUID/Credits.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/Credits.txt.meta -------------------------------------------------------------------------------- /Types/GUID/GUIDEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GUIDEditor.meta -------------------------------------------------------------------------------- /Types/GUID/GUIDEditor/GuidComponentDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GUIDEditor/GuidComponentDrawer.cs -------------------------------------------------------------------------------- /Types/GUID/GUIDEditor/GuidComponentDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GUIDEditor/GuidComponentDrawer.cs.meta -------------------------------------------------------------------------------- /Types/GUID/GUIDEditor/GuidReferenceDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GUIDEditor/GuidReferenceDrawer.cs -------------------------------------------------------------------------------- /Types/GUID/GUIDEditor/GuidReferenceDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GUIDEditor/GuidReferenceDrawer.cs.meta -------------------------------------------------------------------------------- /Types/GUID/GuidComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidComponent.cs -------------------------------------------------------------------------------- /Types/GUID/GuidComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidComponent.cs.meta -------------------------------------------------------------------------------- /Types/GUID/GuidManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidManager.cs -------------------------------------------------------------------------------- /Types/GUID/GuidManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidManager.cs.meta -------------------------------------------------------------------------------- /Types/GUID/GuidReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidReference.cs -------------------------------------------------------------------------------- /Types/GUID/GuidReference.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/GUID/GuidReference.cs.meta -------------------------------------------------------------------------------- /Types/MinMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MinMax.cs -------------------------------------------------------------------------------- /Types/MinMax.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MinMax.cs.meta -------------------------------------------------------------------------------- /Types/MyCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MyCursor.cs -------------------------------------------------------------------------------- /Types/MyCursor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MyCursor.cs.meta -------------------------------------------------------------------------------- /Types/MyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MyDictionary.cs -------------------------------------------------------------------------------- /Types/MyDictionary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/MyDictionary.cs.meta -------------------------------------------------------------------------------- /Types/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Optional.cs -------------------------------------------------------------------------------- /Types/Optional.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0fd3dadb3ef42299beef4af9cb1d5b1 3 | timeCreated: 1551621960 -------------------------------------------------------------------------------- /Types/OptionalMinMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/OptionalMinMax.cs -------------------------------------------------------------------------------- /Types/OptionalMinMax.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/OptionalMinMax.cs.meta -------------------------------------------------------------------------------- /Types/PlayerPrefsBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsBool.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsBool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0da3e0d36d734cd58cc4909673d6832c 3 | timeCreated: 1630590006 -------------------------------------------------------------------------------- /Types/PlayerPrefsFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsFloat.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66c1b046dafd4e21882d52bea024d15e 3 | timeCreated: 1630586841 -------------------------------------------------------------------------------- /Types/PlayerPrefsInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsInt.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abf06d2ac7a2454390eada61bd0c528c 3 | timeCreated: 1630587303 -------------------------------------------------------------------------------- /Types/PlayerPrefsString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsString.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsString.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc3a91c05ca47c28ba86452dd44e15a 3 | timeCreated: 1630588512 -------------------------------------------------------------------------------- /Types/PlayerPrefsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsType.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac81fbea2ff4df8aa5bfe75e93b8f8d 3 | timeCreated: 1630588525 -------------------------------------------------------------------------------- /Types/PlayerPrefsVector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector2.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsVector2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector2.cs.meta -------------------------------------------------------------------------------- /Types/PlayerPrefsVector2Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector2Int.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsVector2Int.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90bae5ac7f334a2b95ff64bb034a03bb 3 | timeCreated: 1671621892 -------------------------------------------------------------------------------- /Types/PlayerPrefsVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector3.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsVector3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 579c1a5a9518425b9a17277443dff889 3 | timeCreated: 1630589323 -------------------------------------------------------------------------------- /Types/PlayerPrefsVector3Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector3Int.cs -------------------------------------------------------------------------------- /Types/PlayerPrefsVector3Int.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/PlayerPrefsVector3Int.cs.meta -------------------------------------------------------------------------------- /Types/Reorderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Reorderable.cs -------------------------------------------------------------------------------- /Types/Reorderable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Reorderable.cs.meta -------------------------------------------------------------------------------- /Types/SceneReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/SceneReference.cs -------------------------------------------------------------------------------- /Types/SceneReference.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/SceneReference.cs.meta -------------------------------------------------------------------------------- /Types/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Singleton.cs -------------------------------------------------------------------------------- /Types/Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/Singleton.cs.meta -------------------------------------------------------------------------------- /Types/StateOnAwake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/StateOnAwake.cs -------------------------------------------------------------------------------- /Types/StateOnAwake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed62496e85434631a8ce8752f246de34 3 | timeCreated: 1551189906 -------------------------------------------------------------------------------- /Types/TransformData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/TransformData.cs -------------------------------------------------------------------------------- /Types/TransformData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ae02742dde3480e889abc9bb61dc897 3 | timeCreated: 1605955399 -------------------------------------------------------------------------------- /Types/UIFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/UIFollow.cs -------------------------------------------------------------------------------- /Types/UIFollow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82cf416578b148d9ae86cde7de85a237 3 | timeCreated: 1539765575 -------------------------------------------------------------------------------- /Types/UIImageBasedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/UIImageBasedButton.cs -------------------------------------------------------------------------------- /Types/UIImageBasedButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/UIImageBasedButton.cs.meta -------------------------------------------------------------------------------- /Types/UIRelativePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/UIRelativePosition.cs -------------------------------------------------------------------------------- /Types/UIRelativePosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c7214e7f69d48c4a26812ef9dbe7232 3 | timeCreated: 1567605283 -------------------------------------------------------------------------------- /Types/UISizeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/Types/UISizeBy.cs -------------------------------------------------------------------------------- /Types/UISizeBy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50d8932f09624db6b87d3d9dc97de3ac 3 | timeCreated: 1548245755 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deadcows/MyBox/HEAD/package.json.meta --------------------------------------------------------------------------------