├── .gitignore ├── README.md ├── license.md ├── template-assets ├── sprites │ ├── background.png │ ├── corner_bot_left.png │ ├── corner_bot_right.png │ ├── corner_top_left.png │ ├── corner_top_right.png │ ├── floor.png │ ├── floor_variation_1.png │ ├── floor_variation_2.png │ ├── slim_path_bot_left.png │ ├── slim_path_bot_right.png │ ├── slim_path_connection.png │ ├── slim_path_crossing.png │ ├── slim_path_down.png │ ├── slim_path_left.png │ ├── slim_path_right.png │ ├── slim_path_three_way.png │ ├── slim_path_top.png │ ├── slim_path_top_left.png │ ├── slim_path_top_right.png │ ├── slim_path_wall_center.png │ ├── slim_path_wall_left.png │ ├── slim_path_wall_right.png │ ├── slim_path_wall_surrounded.png │ ├── small_corner_bot_left.png │ ├── small_corner_bot_right.png │ ├── small_corner_top_left.png │ ├── small_corner_top_right.png │ ├── wall_bot.png │ ├── wall_left.png │ ├── wall_right.png │ └── wall_top.png └── tileset.png ├── template.psd ├── template.tmx └── template.tsx /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | dist/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/README.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/license.md -------------------------------------------------------------------------------- /template-assets/sprites/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/background.png -------------------------------------------------------------------------------- /template-assets/sprites/corner_bot_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_bot_left.png -------------------------------------------------------------------------------- /template-assets/sprites/corner_bot_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_bot_right.png -------------------------------------------------------------------------------- /template-assets/sprites/corner_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_top_left.png -------------------------------------------------------------------------------- /template-assets/sprites/corner_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/corner_top_right.png -------------------------------------------------------------------------------- /template-assets/sprites/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor.png -------------------------------------------------------------------------------- /template-assets/sprites/floor_variation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor_variation_1.png -------------------------------------------------------------------------------- /template-assets/sprites/floor_variation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/floor_variation_2.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_bot_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_bot_left.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_bot_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_bot_right.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_connection.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_crossing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_crossing.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_down.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_left.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_right.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_three_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_three_way.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top_left.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_top_right.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_wall_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_center.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_wall_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_left.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_wall_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_right.png -------------------------------------------------------------------------------- /template-assets/sprites/slim_path_wall_surrounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/slim_path_wall_surrounded.png -------------------------------------------------------------------------------- /template-assets/sprites/small_corner_bot_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_bot_left.png -------------------------------------------------------------------------------- /template-assets/sprites/small_corner_bot_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_bot_right.png -------------------------------------------------------------------------------- /template-assets/sprites/small_corner_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_top_left.png -------------------------------------------------------------------------------- /template-assets/sprites/small_corner_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/small_corner_top_right.png -------------------------------------------------------------------------------- /template-assets/sprites/wall_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_bot.png -------------------------------------------------------------------------------- /template-assets/sprites/wall_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_left.png -------------------------------------------------------------------------------- /template-assets/sprites/wall_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_right.png -------------------------------------------------------------------------------- /template-assets/sprites/wall_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/sprites/wall_top.png -------------------------------------------------------------------------------- /template-assets/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template-assets/tileset.png -------------------------------------------------------------------------------- /template.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template.psd -------------------------------------------------------------------------------- /template.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template.tmx -------------------------------------------------------------------------------- /template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDQuest/krita-tileset-templates/HEAD/template.tsx --------------------------------------------------------------------------------