From f9ef137d17eac3a5fd410ad003aa9da6a63b24f0 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 12 Feb 2022 20:18:02 +0100 Subject: [PATCH] Moved the texture tools under a new tools directory. --- game/icons/naturalist/AspectOfScorpions.tscn | 2 +- game/project.godot | 2 +- game/{ => tools}/texture_tools/LayeredTextureMaker.gd | 0 game/{ => tools}/texture_tools/test/ToolTest.tscn | 4 ++-- .../texture_tools/test/new_packerimageresource.tres | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename game/{ => tools}/texture_tools/LayeredTextureMaker.gd (100%) rename game/{ => tools}/texture_tools/test/ToolTest.tscn (73%) rename game/{ => tools}/texture_tools/test/new_packerimageresource.tres (100%) diff --git a/game/icons/naturalist/AspectOfScorpions.tscn b/game/icons/naturalist/AspectOfScorpions.tscn index 9e7ef74c..822c6115 100644 --- a/game/icons/naturalist/AspectOfScorpions.tscn +++ b/game/icons/naturalist/AspectOfScorpions.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=6 format=2] -[ext_resource path="res://texture_tools/LayeredTextureMaker.gd" type="Script" id=1] +[ext_resource path="res://tools/texture_tools/LayeredTextureMaker.gd" type="Script" id=1] [ext_resource path="res://icons/naturalist/AspectOfScorpions.png" type="Texture" id=2] [ext_resource path="res://icons/parts/circles.svg" type="Texture" id=3] [ext_resource path="res://icons/icons.png" type="Texture" id=4] diff --git a/game/project.godot b/game/project.godot index deff1d00..e48aab34 100644 --- a/game/project.godot +++ b/game/project.godot @@ -143,7 +143,7 @@ _global_script_classes=[ { "base": "Node2D", "class": "LayeredTextureMaker", "language": "GDScript", -"path": "res://texture_tools/LayeredTextureMaker.gd" +"path": "res://tools/texture_tools/LayeredTextureMaker.gd" }, { "base": "Resource", "class": "MMMateial", diff --git a/game/texture_tools/LayeredTextureMaker.gd b/game/tools/texture_tools/LayeredTextureMaker.gd similarity index 100% rename from game/texture_tools/LayeredTextureMaker.gd rename to game/tools/texture_tools/LayeredTextureMaker.gd diff --git a/game/texture_tools/test/ToolTest.tscn b/game/tools/texture_tools/test/ToolTest.tscn similarity index 73% rename from game/texture_tools/test/ToolTest.tscn rename to game/tools/texture_tools/test/ToolTest.tscn index ee86078c..02add8c3 100644 --- a/game/texture_tools/test/ToolTest.tscn +++ b/game/tools/texture_tools/test/ToolTest.tscn @@ -1,8 +1,8 @@ [gd_scene load_steps=4 format=2] -[ext_resource path="res://texture_tools/LayeredTextureMaker.gd" type="Script" id=1] +[ext_resource path="res://tools/texture_tools/LayeredTextureMaker.gd" type="Script" id=1] [ext_resource path="res://icon.png" type="Texture" id=2] -[ext_resource path="res://texture_tools/test/new_packerimageresource.tres" type="Texture" id=3] +[ext_resource path="res://tools/texture_tools/test/new_packerimageresource.tres" type="Texture" id=3] [node name="LayeredTextureMaker" type="Node2D"] script = ExtResource( 1 ) diff --git a/game/texture_tools/test/new_packerimageresource.tres b/game/tools/texture_tools/test/new_packerimageresource.tres similarity index 100% rename from game/texture_tools/test/new_packerimageresource.tres rename to game/tools/texture_tools/test/new_packerimageresource.tres