├── .gitattributes ├── .gitignore ├── Editor.meta ├── Editor ├── InternalGUI.cs ├── InternalGUI.cs.meta ├── PickerWindow.cs ├── PickerWindow.cs.meta ├── SettingsProvider.cs ├── SettingsProvider.cs.meta ├── SoCreator.Editor.asmdef ├── SoCreator.Editor.asmdef.meta ├── SoCreator.cs └── SoCreator.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── AssemblyInfo.cs ├── AssemblyInfo.cs.meta ├── SoCreateAttribute.cs ├── SoCreateAttribute.cs.meta ├── SoCreator.asmdef └── SoCreator.asmdef.meta ├── package.json └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/InternalGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/InternalGUI.cs -------------------------------------------------------------------------------- /Editor/InternalGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/InternalGUI.cs.meta -------------------------------------------------------------------------------- /Editor/PickerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/PickerWindow.cs -------------------------------------------------------------------------------- /Editor/PickerWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/PickerWindow.cs.meta -------------------------------------------------------------------------------- /Editor/SettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SettingsProvider.cs -------------------------------------------------------------------------------- /Editor/SettingsProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SettingsProvider.cs.meta -------------------------------------------------------------------------------- /Editor/SoCreator.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SoCreator.Editor.asmdef -------------------------------------------------------------------------------- /Editor/SoCreator.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SoCreator.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/SoCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SoCreator.cs -------------------------------------------------------------------------------- /Editor/SoCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Editor/SoCreator.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /Runtime/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /Runtime/SoCreateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/SoCreateAttribute.cs -------------------------------------------------------------------------------- /Runtime/SoCreateAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/SoCreateAttribute.cs.meta -------------------------------------------------------------------------------- /Runtime/SoCreator.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/SoCreator.asmdef -------------------------------------------------------------------------------- /Runtime/SoCreator.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/Runtime/SoCreator.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullTale/SoCreator/HEAD/package.json.meta --------------------------------------------------------------------------------