├── .gitignore ├── Editor.meta ├── Editor ├── CreatorKitTriggerEditor.Editor.asmdef ├── CreatorKitTriggerEditor.Editor.asmdef.meta ├── StateKey.cs ├── StateKey.cs.meta ├── StateKeyComponentsSet.cs ├── StateKeyComponentsSet.cs.meta ├── StateKeyListWindow.cs ├── StateKeyListWindow.cs.meta ├── Target.cs ├── Target.cs.meta ├── TargetConverter.cs └── TargetConverter.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── package.json └── package.json.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/CreatorKitTriggerEditor.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/CreatorKitTriggerEditor.Editor.asmdef -------------------------------------------------------------------------------- /Editor/CreatorKitTriggerEditor.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/CreatorKitTriggerEditor.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/StateKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/StateKey.cs -------------------------------------------------------------------------------- /Editor/StateKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4217b72638c459a9dbf3ef72d6dc5ad 3 | timeCreated: 1608050546 -------------------------------------------------------------------------------- /Editor/StateKeyComponentsSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/StateKeyComponentsSet.cs -------------------------------------------------------------------------------- /Editor/StateKeyComponentsSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2464147930bf47d1a94503708241e9ef 3 | timeCreated: 1608050510 -------------------------------------------------------------------------------- /Editor/StateKeyListWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/StateKeyListWindow.cs -------------------------------------------------------------------------------- /Editor/StateKeyListWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/StateKeyListWindow.cs.meta -------------------------------------------------------------------------------- /Editor/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/Target.cs -------------------------------------------------------------------------------- /Editor/Target.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e86ff9bb1e4d189d8077c628869f6b 3 | timeCreated: 1608050572 -------------------------------------------------------------------------------- /Editor/TargetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/Editor/TargetConverter.cs -------------------------------------------------------------------------------- /Editor/TargetConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb7d6665d950422d84df2a2f3a616a5a 3 | timeCreated: 1608050644 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/README.md.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noir-neo/CreatorKitTriggerEditor/HEAD/package.json.meta --------------------------------------------------------------------------------