├── .gitignore ├── Assets ├── texture-toolkit.meta └── texture-toolkit │ ├── Logo.xcf │ ├── Logo.xcf.meta │ ├── editor.meta │ ├── editor │ ├── TextureCreatorWindow.cs │ ├── TextureCreatorWindow.cs.meta │ ├── TextureEditorWindow.cs │ └── TextureEditorWindow.cs.meta │ ├── examples.meta │ ├── examples │ ├── .DS_Store │ ├── Grass.png │ ├── Grass.png.meta │ ├── marble.png │ ├── marble.png.meta │ ├── tile.png │ ├── tile.png.meta │ ├── wood.png │ └── wood.png.meta │ ├── scripts.meta │ └── scripts │ ├── TextureGen.cs │ ├── TextureGen.cs.meta │ ├── TextureTools.cs │ └── TextureTools.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/texture-toolkit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/Logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/Logo.xcf -------------------------------------------------------------------------------- /Assets/texture-toolkit/Logo.xcf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/Logo.xcf.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/editor.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/editor/TextureCreatorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/editor/TextureCreatorWindow.cs -------------------------------------------------------------------------------- /Assets/texture-toolkit/editor/TextureCreatorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/editor/TextureCreatorWindow.cs.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/editor/TextureEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/editor/TextureEditorWindow.cs -------------------------------------------------------------------------------- /Assets/texture-toolkit/editor/TextureEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/editor/TextureEditorWindow.cs.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/.DS_Store -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/Grass.png -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/Grass.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/Grass.png.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/marble.png -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/marble.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/marble.png.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/tile.png -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/tile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/tile.png.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/wood.png -------------------------------------------------------------------------------- /Assets/texture-toolkit/examples/wood.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/examples/wood.png.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/scripts.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/scripts/TextureGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/scripts/TextureGen.cs -------------------------------------------------------------------------------- /Assets/texture-toolkit/scripts/TextureGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/scripts/TextureGen.cs.meta -------------------------------------------------------------------------------- /Assets/texture-toolkit/scripts/TextureTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/scripts/TextureTools.cs -------------------------------------------------------------------------------- /Assets/texture-toolkit/scripts/TextureTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/Assets/texture-toolkit/scripts/TextureTools.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitoffdev/texture-toolkit/HEAD/README.md --------------------------------------------------------------------------------