├── .gitignore ├── Editor.meta ├── Editor ├── AssetModificationProcessor.cs ├── AssetModificationProcessor.cs.meta ├── AssetPostprocessor.cs ├── AssetPostprocessor.cs.meta ├── Generator.cs ├── Generator.cs.meta ├── UnityTagsGenerator.Editor.asmdef └── UnityTagsGenerator.Editor.asmdef.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── LayerExtensions.cs ├── LayerExtensions.cs.meta ├── UnityTagsGenerator.asmdef └── UnityTagsGenerator.asmdef.meta ├── Template~ └── Tags.template.cs ├── Tests.meta ├── Tests ├── Editor.meta └── Editor │ ├── LayerExtensionsTest.cs │ ├── LayerExtensionsTest.cs.meta │ ├── UnityTagsGenerator.Tests.Editor.asmdef │ └── UnityTagsGenerator.Tests.Editor.asmdef.meta ├── package.json └── package.json.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AssetModificationProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor/AssetModificationProcessor.cs -------------------------------------------------------------------------------- /Editor/AssetModificationProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 940ca453f96247b686940b01f983357d 3 | timeCreated: 1653255102 -------------------------------------------------------------------------------- /Editor/AssetPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor/AssetPostprocessor.cs -------------------------------------------------------------------------------- /Editor/AssetPostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7951ec1a9d2a42249260f6be3dab85fe 3 | timeCreated: 1653255042 -------------------------------------------------------------------------------- /Editor/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor/Generator.cs -------------------------------------------------------------------------------- /Editor/Generator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor/Generator.cs.meta -------------------------------------------------------------------------------- /Editor/UnityTagsGenerator.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Editor/UnityTagsGenerator.Editor.asmdef -------------------------------------------------------------------------------- /Editor/UnityTagsGenerator.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1b853b6c7a54360bc3f9366075be815 3 | timeCreated: 1653254758 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d24c2211a654274bcd96aaf1b6d35ad 3 | timeCreated: 1682016673 -------------------------------------------------------------------------------- /Runtime/LayerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Runtime/LayerExtensions.cs -------------------------------------------------------------------------------- /Runtime/LayerExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39617bbd54ec4c45847f966414b8b48a 3 | timeCreated: 1654026893 -------------------------------------------------------------------------------- /Runtime/UnityTagsGenerator.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UnityTagsGenerator" 3 | } 4 | -------------------------------------------------------------------------------- /Runtime/UnityTagsGenerator.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Runtime/UnityTagsGenerator.asmdef.meta -------------------------------------------------------------------------------- /Template~/Tags.template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Template~/Tags.template.cs -------------------------------------------------------------------------------- /Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df29ef638f4b4dd5a99f3fff1cc5a46b 3 | timeCreated: 1682020933 -------------------------------------------------------------------------------- /Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e56f137c79d488bbe1296bf640fc0f4 3 | timeCreated: 1682020976 -------------------------------------------------------------------------------- /Tests/Editor/LayerExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Tests/Editor/LayerExtensionsTest.cs -------------------------------------------------------------------------------- /Tests/Editor/LayerExtensionsTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c4609cd99664f40b613e1200a2e7c42 3 | timeCreated: 1682021002 -------------------------------------------------------------------------------- /Tests/Editor/UnityTagsGenerator.Tests.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Tests/Editor/UnityTagsGenerator.Tests.Editor.asmdef -------------------------------------------------------------------------------- /Tests/Editor/UnityTagsGenerator.Tests.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/Tests/Editor/UnityTagsGenerator.Tests.Editor.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheeryLee/UnityTagsGenerator/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98b4d936654045ae815cc122ea364023 3 | timeCreated: 1682017797 --------------------------------------------------------------------------------