├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .releaserc.json ├── .screenshot.png ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Editor.meta ├── Editor ├── AssemblyInfo.cs ├── AssemblyInfo.cs.meta ├── Drawers.meta ├── Drawers │ ├── TypeDropdownDrawer.cs │ ├── TypeDropdownDrawer.cs.meta │ ├── TypeFieldDrawer.cs │ ├── TypeFieldDrawer.cs.meta │ ├── TypeReferencePropertyDrawer.cs │ └── TypeReferencePropertyDrawer.cs.meta ├── ProjectSettings.cs ├── ProjectSettings.cs.meta ├── ProjectSettingsDrawer.cs ├── ProjectSettingsDrawer.cs.meta ├── TypeReferences.Editor.asmdef ├── TypeReferences.Editor.asmdef.meta ├── Util.meta └── Util │ ├── SerializedTypeReference.cs │ ├── SerializedTypeReference.cs.meta │ ├── TypeCache.cs │ ├── TypeCache.cs.meta │ ├── TypeCollector.cs │ ├── TypeCollector.cs.meta │ ├── TypeNameFormatter.cs │ └── TypeNameFormatter.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── AssemblyInfo.cs ├── AssemblyInfo.cs.meta ├── Attributes.meta ├── Attributes │ ├── Grouping.cs │ ├── Grouping.cs.meta │ ├── InheritsAttribute.cs │ ├── InheritsAttribute.cs.meta │ ├── TypeOptionsAttribute.cs │ └── TypeOptionsAttribute.cs.meta ├── TypeReference.Editor.cs ├── TypeReference.Editor.cs.meta ├── TypeReference.Equality.cs ├── TypeReference.Equality.cs.meta ├── TypeReference.cs ├── TypeReference.cs.meta ├── TypeReferenceArrayComparer.cs ├── TypeReferenceArrayComparer.cs.meta ├── TypeReferences.asmdef └── TypeReferences.asmdef.meta ├── Samples~ ├── Usage Examples.meta └── Usage Examples │ ├── Demo.unity │ ├── Demo.unity.meta │ ├── Editor.meta │ ├── Editor │ ├── InfoBox.cs │ ├── InfoBox.cs.meta │ ├── TypeReferenceExampleEditor.cs │ ├── TypeReferenceExampleEditor.cs.meta │ ├── TypeReferenceField.cs │ └── TypeReferenceField.cs.meta │ ├── Inherits Examples.meta │ ├── Inherits Examples │ ├── AllowAbstract.cs │ ├── AllowAbstract.cs.meta │ ├── IncludeBaseType.cs │ ├── IncludeBaseType.cs.meta │ ├── InheritsExample.cs │ └── InheritsExample.cs.meta │ ├── Look Customization.meta │ ├── Look Customization │ ├── CustomHeight.cs │ ├── CustomHeight.cs.meta │ ├── ExpandFolders.cs │ ├── ExpandFolders.cs.meta │ ├── GroupingModes.cs │ ├── GroupingModes.cs.meta │ ├── ShortName.cs │ └── ShortName.cs.meta │ ├── ProjectSettings.cs │ ├── ProjectSettings.cs.meta │ ├── TypeOptions Examples.meta │ ├── TypeOptions Examples │ ├── AllowInternal.cs │ ├── AllowInternal.cs.meta │ ├── Custom Assembly.meta │ ├── Custom Assembly │ │ ├── CustomAssembly.asmdef │ │ ├── CustomAssembly.asmdef.meta │ │ ├── CustomAssemblyExamples.cs │ │ └── CustomAssemblyExamples.cs.meta │ ├── ExampleUsage.cs │ ├── ExampleUsage.cs.meta │ ├── IncludeAdditionalAssemblies.cs │ ├── IncludeAdditionalAssemblies.cs.meta │ ├── IncludeExcludeTypes.cs │ ├── IncludeExcludeTypes.cs.meta │ ├── ShowNoneElement.cs │ ├── ShowNoneElement.cs.meta │ ├── WithoutAttributes.cs │ └── WithoutAttributes.cs.meta │ ├── Utils.meta │ └── Utils │ ├── ButtonAttribute.cs │ ├── ButtonAttribute.cs.meta │ ├── GreetingLoggers.cs │ ├── GreetingLoggers.cs.meta │ ├── InfoBoxAttribute.cs │ ├── InfoBoxAttribute.cs.meta │ ├── TypeReferenceExample.cs │ └── TypeReferenceExample.cs.meta ├── Tests.meta ├── Tests ├── Editor.meta └── Editor │ ├── EqualityTests.cs │ ├── EqualityTests.cs.meta │ ├── InheritsAttributeTests.cs │ ├── InheritsAttributeTests.cs.meta │ ├── TypeOptionsAttributeTests.cs │ ├── TypeOptionsAttributeTests.cs.meta │ ├── TypeReferenceTests.cs │ ├── TypeReferenceTests.cs.meta │ ├── TypeReferences.Editor.Tests.asmdef │ └── TypeReferences.Editor.Tests.asmdef.meta ├── package.json ├── package.json.bak ├── package.json.bak.meta └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/.screenshot.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/AssemblyInfo.cs -------------------------------------------------------------------------------- /Editor/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 815bb6ad86c04970bb390f249f9dcf3b 3 | timeCreated: 1602944262 -------------------------------------------------------------------------------- /Editor/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13edba5792254b5bb7e401ecc648e007 3 | timeCreated: 1600455463 -------------------------------------------------------------------------------- /Editor/Drawers/TypeDropdownDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Drawers/TypeDropdownDrawer.cs -------------------------------------------------------------------------------- /Editor/Drawers/TypeDropdownDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0222c6bee64104b4a7a12fd9224c1c 3 | timeCreated: 1599154989 -------------------------------------------------------------------------------- /Editor/Drawers/TypeFieldDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Drawers/TypeFieldDrawer.cs -------------------------------------------------------------------------------- /Editor/Drawers/TypeFieldDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Drawers/TypeFieldDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Drawers/TypeReferencePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Drawers/TypeReferencePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Drawers/TypeReferencePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cefa076320ab493bb58c0aab0bf90b8a 3 | timeCreated: 1598210952 -------------------------------------------------------------------------------- /Editor/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/ProjectSettings.cs -------------------------------------------------------------------------------- /Editor/ProjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/ProjectSettings.cs.meta -------------------------------------------------------------------------------- /Editor/ProjectSettingsDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/ProjectSettingsDrawer.cs -------------------------------------------------------------------------------- /Editor/ProjectSettingsDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9169e88cf0b942e19b781a0e04937181 3 | timeCreated: 1627840915 -------------------------------------------------------------------------------- /Editor/TypeReferences.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/TypeReferences.Editor.asmdef -------------------------------------------------------------------------------- /Editor/TypeReferences.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/TypeReferences.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6afefe4d77bc4954a6c4bd458e2187bf 3 | timeCreated: 1600455575 -------------------------------------------------------------------------------- /Editor/Util/SerializedTypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Util/SerializedTypeReference.cs -------------------------------------------------------------------------------- /Editor/Util/SerializedTypeReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7298238ff8964b25b0dc77dc0bfabf8d 3 | timeCreated: 1598210952 -------------------------------------------------------------------------------- /Editor/Util/TypeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Util/TypeCache.cs -------------------------------------------------------------------------------- /Editor/Util/TypeCache.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Util/TypeCache.cs.meta -------------------------------------------------------------------------------- /Editor/Util/TypeCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Util/TypeCollector.cs -------------------------------------------------------------------------------- /Editor/Util/TypeCollector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4d5d16d05c54704a507ab3266268a41 3 | timeCreated: 1598210952 -------------------------------------------------------------------------------- /Editor/Util/TypeNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Editor/Util/TypeNameFormatter.cs -------------------------------------------------------------------------------- /Editor/Util/TypeNameFormatter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a010996209754d54bd06290f92d14e80 3 | timeCreated: 1598210952 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /Runtime/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a88ad933695468bb84cdf38c93c12ad 3 | timeCreated: 1602944472 -------------------------------------------------------------------------------- /Runtime/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e693c1d777354d259607a0818f8e60ba 3 | timeCreated: 1598119944 -------------------------------------------------------------------------------- /Runtime/Attributes/Grouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/Attributes/Grouping.cs -------------------------------------------------------------------------------- /Runtime/Attributes/Grouping.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/Attributes/Grouping.cs.meta -------------------------------------------------------------------------------- /Runtime/Attributes/InheritsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/Attributes/InheritsAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/InheritsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 031e0f02c1124386b18ec861568cc258 3 | timeCreated: 1598123234 -------------------------------------------------------------------------------- /Runtime/Attributes/TypeOptionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/Attributes/TypeOptionsAttribute.cs -------------------------------------------------------------------------------- /Runtime/Attributes/TypeOptionsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0ab6d2c4df640538600e7e9d0e47928 3 | timeCreated: 1598111507 -------------------------------------------------------------------------------- /Runtime/TypeReference.Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReference.Editor.cs -------------------------------------------------------------------------------- /Runtime/TypeReference.Editor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReference.Editor.cs.meta -------------------------------------------------------------------------------- /Runtime/TypeReference.Equality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReference.Equality.cs -------------------------------------------------------------------------------- /Runtime/TypeReference.Equality.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c036275cf6dd4805a3c7615d7a49a874 3 | timeCreated: 1609016052 -------------------------------------------------------------------------------- /Runtime/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReference.cs -------------------------------------------------------------------------------- /Runtime/TypeReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 087bfa792a5d4ea5b6a10d1954cef7c1 3 | timeCreated: 1598092927 -------------------------------------------------------------------------------- /Runtime/TypeReferenceArrayComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReferenceArrayComparer.cs -------------------------------------------------------------------------------- /Runtime/TypeReferenceArrayComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a65d10016e24e188772009cf1a40c76 3 | timeCreated: 1601569560 -------------------------------------------------------------------------------- /Runtime/TypeReferences.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReferences.asmdef -------------------------------------------------------------------------------- /Runtime/TypeReferences.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Runtime/TypeReferences.asmdef.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Demo.unity -------------------------------------------------------------------------------- /Samples~/Usage Examples/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Demo.unity.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e63d61c07dab466294b298d5a32179ac 3 | timeCreated: 1598895744 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/InfoBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Editor/InfoBox.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/InfoBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f5155a3c8ac43f78c317d4e3eb994d0 3 | timeCreated: 1598993103 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/TypeReferenceExampleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Editor/TypeReferenceExampleEditor.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/TypeReferenceExampleEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adab1c17e37545d19124e535e92fb0dd 3 | timeCreated: 1598895739 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/TypeReferenceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Editor/TypeReferenceField.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Editor/TypeReferenceField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fce0450017c740b3b2e8b058623d3b82 3 | timeCreated: 1598993481 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36174b8568c14439a0865c7fade55bd5 3 | timeCreated: 1598891155 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/AllowAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Inherits Examples/AllowAbstract.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/AllowAbstract.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e858db1690b42ac86b0b212040ae4af 3 | timeCreated: 1598891710 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/IncludeBaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Inherits Examples/IncludeBaseType.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/IncludeBaseType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dd13da77f22459c96f15264f735ee73 3 | timeCreated: 1598891570 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/InheritsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Inherits Examples/InheritsExample.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Inherits Examples/InheritsExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b11a7fb5dcf74e0285a677d60da8f593 3 | timeCreated: 1598891155 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/CustomHeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization/CustomHeight.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/CustomHeight.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization/CustomHeight.cs.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/ExpandFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization/ExpandFolders.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/ExpandFolders.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04f32b77ccb54c94928ee7e3d26ea243 3 | timeCreated: 1600541987 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/GroupingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization/GroupingModes.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/GroupingModes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3238fa800d04cc3a9746a0765aed6e8 3 | timeCreated: 1598461777 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/ShortName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Look Customization/ShortName.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Look Customization/ShortName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79657a2ceaf74b2daaed38fd9eaccb80 3 | timeCreated: 1601132785 -------------------------------------------------------------------------------- /Samples~/Usage Examples/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/ProjectSettings.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/ProjectSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561b6c7fa35048649b12c7e40e1b2d18 3 | timeCreated: 1628708870 -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/AllowInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/AllowInternal.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/AllowInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 821c7c408b4b487e9e783628a102348a 3 | timeCreated: 1616522475 -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/Custom Assembly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/Custom Assembly.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssembly.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssembly.asmdef -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssembly.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssembly.asmdef.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssemblyExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssemblyExamples.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssemblyExamples.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/Custom Assembly/CustomAssemblyExamples.cs.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/ExampleUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/ExampleUsage.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/ExampleUsage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/ExampleUsage.cs.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/IncludeAdditionalAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/IncludeAdditionalAssemblies.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/IncludeAdditionalAssemblies.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd5df17388c43ef9b4e71d15395e894 3 | timeCreated: 1598890017 -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/IncludeExcludeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/IncludeExcludeTypes.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/IncludeExcludeTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 806468ec90f74130b6c6e45e410adfef 3 | timeCreated: 1598462420 -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/ShowNoneElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/ShowNoneElement.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/ShowNoneElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be7dae3625604e2498b203b6e701e06d 3 | timeCreated: 1598888763 -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/WithoutAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/TypeOptions Examples/WithoutAttributes.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/TypeOptions Examples/WithoutAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4088eddd0b54347852b6be3bbcbeb3a 3 | timeCreated: 1598461442 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf61ee15f52e4069b6084d415891dfd9 3 | timeCreated: 1598956052 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/ButtonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/ButtonAttribute.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8a82fd1690d4a19a5e6ab3ad009a9f5 3 | timeCreated: 1598953511 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/GreetingLoggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/GreetingLoggers.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/GreetingLoggers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/GreetingLoggers.cs.meta -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/InfoBoxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/InfoBoxAttribute.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/InfoBoxAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bb04d2282eb4498a8cbc4eece018503 3 | timeCreated: 1598955930 -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/TypeReferenceExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/TypeReferenceExample.cs -------------------------------------------------------------------------------- /Samples~/Usage Examples/Utils/TypeReferenceExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Samples~/Usage Examples/Utils/TypeReferenceExample.cs.meta -------------------------------------------------------------------------------- /Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests.meta -------------------------------------------------------------------------------- /Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor.meta -------------------------------------------------------------------------------- /Tests/Editor/EqualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/EqualityTests.cs -------------------------------------------------------------------------------- /Tests/Editor/EqualityTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d12a8013197d47a69bb2244b66ff5e27 3 | timeCreated: 1609162169 -------------------------------------------------------------------------------- /Tests/Editor/InheritsAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/InheritsAttributeTests.cs -------------------------------------------------------------------------------- /Tests/Editor/InheritsAttributeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaaf4132bf0c4efe9694f39ba2a759d6 3 | timeCreated: 1598284962 -------------------------------------------------------------------------------- /Tests/Editor/TypeOptionsAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/TypeOptionsAttributeTests.cs -------------------------------------------------------------------------------- /Tests/Editor/TypeOptionsAttributeTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/TypeOptionsAttributeTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/TypeReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/TypeReferenceTests.cs -------------------------------------------------------------------------------- /Tests/Editor/TypeReferenceTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20b123c55ea346c0a9adea6c1eeefe97 3 | timeCreated: 1598093663 -------------------------------------------------------------------------------- /Tests/Editor/TypeReferences.Editor.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/TypeReferences.Editor.Tests.asmdef -------------------------------------------------------------------------------- /Tests/Editor/TypeReferences.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/Tests/Editor/TypeReferences.Editor.Tests.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/package.json -------------------------------------------------------------------------------- /package.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/package.json.bak -------------------------------------------------------------------------------- /package.json.bak.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/package.json.bak.meta -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidAlloy/ClassTypeReference-for-Unity/HEAD/package.json.meta --------------------------------------------------------------------------------