From 6ab15d398bba0de0ee02f7a383db7bc0cde83a86 Mon Sep 17 00:00:00 2001 From: rainlizard <15337628+rainlizard@users.noreply.github.com> Date: Mon, 13 May 2024 16:32:50 +1000 Subject: [PATCH] cfg refactor wip 8 --- Autoload/Graphics.gd | 54 +++++++++--------- Autoload/Things.gd | 17 ++++++ Scenes/{FxData.gd => CfgLoader.gd} | 5 ++ Scenes/Main.tscn | 6 +- Scenes/OldCfgCode.gd | 9 +-- Scenes/OpenMap.gd | 4 +- {used_images => extra_images}/banner.png | Bin .../banner.png.import | 6 +- {used_images => extra_images}/cattails.png | Bin .../cattails.png.import | 6 +- {used_images => extra_images}/druid.png | Bin .../druid.png.import | 6 +- .../druid_portrait.png | Bin .../druid_portrait.png.import | 6 +- {used_images => extra_images}/fern.png | Bin {used_images => extra_images}/fern.png.import | 6 +- {used_images => extra_images}/fern_brown.png | Bin .../fern_brown.png.import | 6 +- {used_images => extra_images}/fern_small.png | Bin .../fern_small.png.import | 6 +- .../fern_small_brown.png | Bin .../fern_small_brown.png.import | 6 +- {used_images => extra_images}/ice_pillar.png | Bin .../ice_pillar.png.import | 6 +- {used_images => extra_images}/ice_rock.png | Bin .../ice_rock.png.import | 6 +- {used_images => extra_images}/lair_druid.png | Bin .../lair_druid.png.import | 6 +- {used_images => extra_images}/lantern_pst.png | Bin .../lantern_pst.png.import | 6 +- {used_images => extra_images}/lava_pillar.png | Bin .../lava_pillar.png.import | 6 +- {used_images => extra_images}/lava_rock.png | Bin .../lava_rock.png.import | 6 +- {used_images => extra_images}/lilypad.png | Bin .../lilypad.png.import | 6 +- .../mushroom_green.png | Bin .../mushroom_green.png.import | 6 +- .../mushroom_red.png | Bin .../mushroom_red.png.import | 6 +- .../mushroom_yellow.png | Bin .../mushroom_yellow.png.import | 6 +- .../potion_brown.png | Bin .../potion_brown.png.import | 6 +- {used_images => extra_images}/potion_red.png | Bin .../potion_red.png.import | 6 +- .../potion_white.png | Bin .../potion_white.png.import | 6 +- .../potion_yellow.png | Bin .../potion_yellow.png.import | 6 +- {used_images => extra_images}/rock.png | Bin {used_images => extra_images}/rock.png.import | 6 +- {used_images => extra_images}/rock_pillar.png | Bin .../rock_pillar.png.import | 6 +- {used_images => extra_images}/statue_3.png | Bin .../statue_3.png.import | 6 +- {used_images => extra_images}/statue_4.png | Bin .../statue_4.png.import | 6 +- {used_images => extra_images}/time_mage.png | Bin .../time_mage.png.import | 6 +- .../time_mage_portrait.png | Bin .../time_mage_portrait.png.import | 6 +- {used_images => extra_images}/tnt.png | Bin {used_images => extra_images}/tnt.png.import | 6 +- unearthdata/custom-object-images/!readme.txt | 10 ++++ 65 files changed, 152 insertions(+), 127 deletions(-) rename Scenes/{FxData.gd => CfgLoader.gd} (95%) rename {used_images => extra_images}/banner.png (100%) rename {used_images => extra_images}/banner.png.import (72%) rename {used_images => extra_images}/cattails.png (100%) rename {used_images => extra_images}/cattails.png.import (71%) rename {used_images => extra_images}/druid.png (100%) rename {used_images => extra_images}/druid.png.import (73%) rename {used_images => extra_images}/druid_portrait.png (100%) rename {used_images => extra_images}/druid_portrait.png.import (69%) rename {used_images => extra_images}/fern.png (100%) rename {used_images => extra_images}/fern.png.import (73%) rename {used_images => extra_images}/fern_brown.png (100%) rename {used_images => extra_images}/fern_brown.png.import (70%) rename {used_images => extra_images}/fern_small.png (100%) rename {used_images => extra_images}/fern_small.png.import (70%) rename {used_images => extra_images}/fern_small_brown.png (100%) rename {used_images => extra_images}/fern_small_brown.png.import (69%) rename {used_images => extra_images}/ice_pillar.png (100%) rename {used_images => extra_images}/ice_pillar.png.import (70%) rename {used_images => extra_images}/ice_rock.png (100%) rename {used_images => extra_images}/ice_rock.png.import (71%) rename {used_images => extra_images}/lair_druid.png (100%) rename {used_images => extra_images}/lair_druid.png.import (70%) rename {used_images => extra_images}/lantern_pst.png (100%) rename {used_images => extra_images}/lantern_pst.png.import (70%) rename {used_images => extra_images}/lava_pillar.png (100%) rename {used_images => extra_images}/lava_pillar.png.import (70%) rename {used_images => extra_images}/lava_rock.png (100%) rename {used_images => extra_images}/lava_rock.png.import (71%) rename {used_images => extra_images}/lilypad.png (100%) rename {used_images => extra_images}/lilypad.png.import (72%) rename {used_images => extra_images}/mushroom_green.png (100%) rename {used_images => extra_images}/mushroom_green.png.import (69%) rename {used_images => extra_images}/mushroom_red.png (100%) rename {used_images => extra_images}/mushroom_red.png.import (70%) rename {used_images => extra_images}/mushroom_yellow.png (100%) rename {used_images => extra_images}/mushroom_yellow.png.import (69%) rename {used_images => extra_images}/potion_brown.png (100%) rename {used_images => extra_images}/potion_brown.png.import (70%) rename {used_images => extra_images}/potion_red.png (100%) rename {used_images => extra_images}/potion_red.png.import (70%) rename {used_images => extra_images}/potion_white.png (100%) rename {used_images => extra_images}/potion_white.png.import (70%) rename {used_images => extra_images}/potion_yellow.png (100%) rename {used_images => extra_images}/potion_yellow.png.import (69%) rename {used_images => extra_images}/rock.png (100%) rename {used_images => extra_images}/rock.png.import (73%) rename {used_images => extra_images}/rock_pillar.png (100%) rename {used_images => extra_images}/rock_pillar.png.import (70%) rename {used_images => extra_images}/statue_3.png (100%) rename {used_images => extra_images}/statue_3.png.import (71%) rename {used_images => extra_images}/statue_4.png (100%) rename {used_images => extra_images}/statue_4.png.import (71%) rename {used_images => extra_images}/time_mage.png (100%) rename {used_images => extra_images}/time_mage.png.import (71%) rename {used_images => extra_images}/time_mage_portrait.png (100%) rename {used_images => extra_images}/time_mage_portrait.png.import (68%) rename {used_images => extra_images}/tnt.png (100%) rename {used_images => extra_images}/tnt.png.import (73%) create mode 100644 unearthdata/custom-object-images/!readme.txt diff --git a/Autoload/Graphics.gd b/Autoload/Graphics.gd index e0361bc4..3730d9cc 100644 --- a/Autoload/Graphics.gd +++ b/Autoload/Graphics.gd @@ -94,7 +94,7 @@ var sprite_id = { "LIGHTNING" : preload("res://dk_images/trapdoor_64/trap_lightning_std.png"), "WORD_OF_POWER" : preload("res://dk_images/trapdoor_64/trap_wop_std.png"), "LAVA" : preload("res://dk_images/trapdoor_64/trap_lava_std.png"), -"TNT" : preload("res://used_images/tnt.png"), +"TNT" : preload("res://extra_images/tnt.png"), # Spellbooks "SPELLBOOK_ARMG" : preload("res://dk_images/keepower_64/armagedn_std.png"), "SPELLBOOK_POSS" : preload("res://dk_images/keepower_64/possess_std.png"), @@ -116,11 +116,11 @@ var sprite_id = { "SPELLBOOK_DWAL" : preload("res://dk_images/keepower_64/dstwall_std.png"), "SPELLBOOK_TBMB" : preload("res://edited_images/timebomb.png"), # Decorations/Furniture -"BANNER" : preload("res://used_images/banner.png"), -"FERN" : preload("res://used_images/fern.png"), -"FERN_BROWN" : preload("res://used_images/fern_brown.png"), -"FERN_SMALL" : preload("res://used_images/fern_small.png"), -"FERN_SMALL_BROWN" : preload("res://used_images/fern_small_brown.png"), +"BANNER" : preload("res://extra_images/banner.png"), +"FERN" : preload("res://extra_images/fern.png"), +"FERN_BROWN" : preload("res://extra_images/fern_brown.png"), +"FERN_SMALL" : preload("res://extra_images/fern_small.png"), +"FERN_SMALL_BROWN" : preload("res://extra_images/fern_small_brown.png"), "FLAGPOLE_BLACKFLAG" : preload("res://dk_images/furniture/flagpole_blackflag_tp/AnimFlagpoleBlack.tres"), "FLAGPOLE_ORANGEFLAG" : preload("res://dk_images/furniture/flagpole_orangeflag_tp/AnimFlagpoleOrange.tres"), "FLAGPOLE_PURPLEFLAG" : preload("res://dk_images/furniture/flagpole_purpleflag_tp/AnimFlagpolePurple.tres"), @@ -130,24 +130,24 @@ var sprite_id = { "HEARTFLAME_ORANGE" : preload("res://edited_images/heartflames/heartflame_orange/AnimOrangeHeartFlame.tres"), "HEARTFLAME_PURPLE" : preload("res://edited_images/heartflames/heartflame_purple/AnimPurpleHeartFlame.tres"), "HEARTFLAME_WHITE" : preload("res://edited_images/heartflames/heartflame_white/AnimWhiteHeartFlame.tres"), -"ICE_PILLAR" : preload("res://used_images/ice_pillar.png"), -"ICE_PILLAR_SMALL" : preload("res://used_images/ice_rock.png"), -"JUNGLE_CATTAILS" : preload("res://used_images/cattails.png"), -"JUNGLE_LILYPAD" : preload("res://used_images/lilypad.png"), +"ICE_PILLAR" : preload("res://extra_images/ice_pillar.png"), +"ICE_PILLAR_SMALL" : preload("res://extra_images/ice_rock.png"), +"JUNGLE_CATTAILS" : preload("res://extra_images/cattails.png"), +"JUNGLE_LILYPAD" : preload("res://extra_images/lilypad.png"), "KNIGHTSTATUE" : preload("res://dk_images/statues/anim0958/r1frame01.png"), -"LANTERNPOST_STAND" : preload("res://used_images/lantern_pst.png"), -"LAVA_PILLAR" : preload("res://used_images/lava_pillar.png"), -"LAVA_PILLAR_SMALL" : preload("res://used_images/lava_rock.png"), -"MUSHROOM_GREEN_LUM" : preload("res://used_images/mushroom_green.png"), -"MUSHROOM_RED_LUM" : preload("res://used_images/mushroom_red.png"), -"MUSHROOM_YELLOW_LUM" : preload("res://used_images/mushroom_yellow.png"), -"POTION_BROWN" : preload("res://used_images/potion_brown.png"), -"POTION_RED" : preload("res://used_images/potion_red.png"), -"POTION_WHITE" : preload("res://used_images/potion_white.png"), -"POTION_YELLOW" : preload("res://used_images/potion_yellow.png"), -"ROCK_PILLAR" : preload("res://used_images/rock_pillar.png"), -"ROCK_PILLAR_SMALL" : preload("res://used_images/rock.png"), -"DRUID_LAIR" : preload("res://used_images/lair_druid.png"), +"LANTERNPOST_STAND" : preload("res://extra_images/lantern_pst.png"), +"LAVA_PILLAR" : preload("res://extra_images/lava_pillar.png"), +"LAVA_PILLAR_SMALL" : preload("res://extra_images/lava_rock.png"), +"MUSHROOM_GREEN_LUM" : preload("res://extra_images/mushroom_green.png"), +"MUSHROOM_RED_LUM" : preload("res://extra_images/mushroom_red.png"), +"MUSHROOM_YELLOW_LUM" : preload("res://extra_images/mushroom_yellow.png"), +"POTION_BROWN" : preload("res://extra_images/potion_brown.png"), +"POTION_RED" : preload("res://extra_images/potion_red.png"), +"POTION_WHITE" : preload("res://extra_images/potion_white.png"), +"POTION_YELLOW" : preload("res://extra_images/potion_yellow.png"), +"ROCK_PILLAR" : preload("res://extra_images/rock_pillar.png"), +"ROCK_PILLAR_SMALL" : preload("res://extra_images/rock.png"), +"DRUID_LAIR" : preload("res://extra_images/lair_druid.png"), # Creatures "POWER_SIGHT" : preload("res://dk_images/magic_fogs/anim0854/AnimCastedSight.tres"), "WIZARD" : preload("res://edited_images/creatr_icon_64/wizrd_std.png"), @@ -212,8 +212,8 @@ var sprite_id = { "ORC_PORTRAIT" : preload("res://dk_images/creature_portrait_64/creatr_portrt_orc.png"), "FLOATING_SPIRIT" : preload("res://dk_images/magic_dust/anim0981/r1frame02.png"), "FLOATING_SPIRIT_PORTRAIT" : preload("res://dk_images/magic_dust/anim0981/r1frame02.png"), -"DRUID" : preload("res://used_images/druid.png"), -"DRUID_PORTRAIT" : preload("res://used_images/druid_portrait.png"), -"TIME_MAGE" : preload("res://used_images/time_mage.png"), -"TIME_MAGE_PORTRAIT" : preload("res://used_images/time_mage_portrait.png"), +"DRUID" : preload("res://extra_images/druid.png"), +"DRUID_PORTRAIT" : preload("res://extra_images/druid_portrait.png"), +"TIME_MAGE" : preload("res://extra_images/time_mage.png"), +"TIME_MAGE_PORTRAIT" : preload("res://extra_images/time_mage_portrait.png"), } diff --git a/Autoload/Things.gd b/Autoload/Things.gd index f230cd45..40d7510b 100644 --- a/Autoload/Things.gd +++ b/Autoload/Things.gd @@ -29,6 +29,23 @@ enum TYPE { EXTRA = 696969 } +var default_data = {} +func _init(): + # This only takes 1ms + default_data["DATA_EXTRA"] = DATA_EXTRA.duplicate(true) + default_data["DATA_DOOR"] = DATA_DOOR.duplicate(true) + default_data["DATA_TRAP"] = DATA_TRAP.duplicate(true) + default_data["DATA_EFFECTGEN"] = DATA_EFFECTGEN.duplicate(true) + default_data["DATA_CREATURE"] = DATA_CREATURE.duplicate(true) + default_data["DATA_OBJECT"] = DATA_OBJECT.duplicate(true) + +func reset_thing_data_to_default(): # Reset data. Takes 1ms. + DATA_EXTRA = default_data["DATA_EXTRA"].duplicate(true) + DATA_DOOR = default_data["DATA_DOOR"].duplicate(true) + DATA_TRAP = default_data["DATA_TRAP"].duplicate(true) + DATA_EFFECTGEN = default_data["DATA_EFFECTGEN"].duplicate(true) + DATA_CREATURE = default_data["DATA_CREATURE"].duplicate(true) + DATA_OBJECT = default_data["DATA_OBJECT"].duplicate(true) func fetch_sprite(thing_type, sub_type): var sub_type_data = data_structure(thing_type).get(sub_type) diff --git a/Scenes/FxData.gd b/Scenes/CfgLoader.gd similarity index 95% rename from Scenes/FxData.gd rename to Scenes/CfgLoader.gd index 580b0f48..a0a9114c 100644 --- a/Scenes/FxData.gd +++ b/Scenes/CfgLoader.gd @@ -21,12 +21,17 @@ func start(): print('Parsed all dkcfg files: ' + str(OS.get_ticks_msec() - CODETIME_START) + 'ms') var CODETIME_LOADCFG_START = OS.get_ticks_msec() + # Step 1: set object data to default + Things.reset_thing_data_to_default() + # Step 2: load data from /fxdata/ config files load_objects_data() load_creatures_data() load_trapdoor_data() + # Step 3: load data from local config files (map00001.objects.cfg) print('Loaded things from cfg files: ' + str(OS.get_ticks_msec() - CODETIME_LOADCFG_START) + 'ms') + func load_objects_data(): for section in objects_cfg: if section.begins_with("object"): diff --git a/Scenes/Main.tscn b/Scenes/Main.tscn index fc6e67be..40385f54 100644 --- a/Scenes/Main.tscn +++ b/Scenes/Main.tscn @@ -168,7 +168,7 @@ [ext_resource path="res://Scenes/UndoStates.gd" type="Script" id=166] [ext_resource path="res://Scenes/ThreadedSaveUndo.gd" type="Script" id=167] [ext_resource path="res://Scenes/Guidelines.gd" type="Script" id=168] -[ext_resource path="res://Scenes/FxData.gd" type="Script" id=169] +[ext_resource path="res://Scenes/CfgLoader.gd" type="Script" id=169] [ext_resource path="res://Scenes/OldCfgCode.gd" type="Script" id=170] [sub_resource type="CubeMesh" id=2] @@ -334,10 +334,10 @@ script = ExtResource( 37 ) [node name="Game" type="Node" parent="."] script = ExtResource( 30 ) -[node name="FxData" type="Node" parent="."] +[node name="CfgLoader" type="Node" parent="."] script = ExtResource( 169 ) -[node name="OLD_UNUSED_CfgCode" type="Node" parent="FxData"] +[node name="OLD_UNUSED_CfgCode" type="Node" parent="CfgLoader"] script = ExtResource( 170 ) [node name="TextureCache" type="Node" parent="."] diff --git a/Scenes/OldCfgCode.gd b/Scenes/OldCfgCode.gd index d923135d..335f5706 100644 --- a/Scenes/OldCfgCode.gd +++ b/Scenes/OldCfgCode.gd @@ -27,14 +27,7 @@ var default_data = {} -#func _init(): -# # This only takes 1ms -# default_data["DATA_EXTRA"] = DATA_EXTRA.duplicate(true) -# default_data["DATA_DOOR"] = DATA_DOOR.duplicate(true) -# default_data["DATA_TRAP"] = DATA_TRAP.duplicate(true) -# default_data["DATA_EFFECTGEN"] = DATA_EFFECTGEN.duplicate(true) -# default_data["DATA_CREATURE"] = DATA_CREATURE.duplicate(true) -# default_data["DATA_OBJECT"] = DATA_OBJECT.duplicate(true) + # # #func reset_thing_data_to_default(): diff --git a/Scenes/OpenMap.gd b/Scenes/OpenMap.gd index 37beb773..5c9cf529 100644 --- a/Scenes/OpenMap.gd +++ b/Scenes/OpenMap.gd @@ -49,7 +49,7 @@ onready var oResizeCurrentMapSize = Nodelist.list["oResizeCurrentMapSize"] onready var oOwnerSelection = Nodelist.list["oOwnerSelection"] onready var oScriptGenerator = Nodelist.list["oScriptGenerator"] onready var oOnlyOwnership = Nodelist.list["oOnlyOwnership"] -onready var oFxData = Nodelist.list["oFxData"] +onready var oCfgLoader = Nodelist.list["oCfgLoader"] var TOTAL_TIME_TO_OPEN_MAP @@ -111,7 +111,7 @@ func open_map(filePath): var map = filePath.get_basename() - oFxData.start() + oCfgLoader.start() # Open all map file types oCurrentMap.currentFilePaths = get_accompanying_files(map) diff --git a/used_images/banner.png b/extra_images/banner.png similarity index 100% rename from used_images/banner.png rename to extra_images/banner.png diff --git a/used_images/banner.png.import b/extra_images/banner.png.import similarity index 72% rename from used_images/banner.png.import rename to extra_images/banner.png.import index ffd0d060..b7aa756f 100644 --- a/used_images/banner.png.import +++ b/extra_images/banner.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/banner.png-9be04942c9c5198ab90865299103459d.stex" +path="res://.import/banner.png-c2bf33e6565c83ced32f8bd540e04d4f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/banner.png" -dest_files=[ "res://.import/banner.png-9be04942c9c5198ab90865299103459d.stex" ] +source_file="res://extra_images/banner.png" +dest_files=[ "res://.import/banner.png-c2bf33e6565c83ced32f8bd540e04d4f.stex" ] [params] diff --git a/used_images/cattails.png b/extra_images/cattails.png similarity index 100% rename from used_images/cattails.png rename to extra_images/cattails.png diff --git a/used_images/cattails.png.import b/extra_images/cattails.png.import similarity index 71% rename from used_images/cattails.png.import rename to extra_images/cattails.png.import index 29bfea30..2778cc80 100644 --- a/used_images/cattails.png.import +++ b/extra_images/cattails.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/cattails.png-48c6d31d00288640cca773b1567dc84b.stex" +path="res://.import/cattails.png-5d3f768e8ae52687133f36d497c842c0.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/cattails.png" -dest_files=[ "res://.import/cattails.png-48c6d31d00288640cca773b1567dc84b.stex" ] +source_file="res://extra_images/cattails.png" +dest_files=[ "res://.import/cattails.png-5d3f768e8ae52687133f36d497c842c0.stex" ] [params] diff --git a/used_images/druid.png b/extra_images/druid.png similarity index 100% rename from used_images/druid.png rename to extra_images/druid.png diff --git a/used_images/druid.png.import b/extra_images/druid.png.import similarity index 73% rename from used_images/druid.png.import rename to extra_images/druid.png.import index 24086caf..d1122710 100644 --- a/used_images/druid.png.import +++ b/extra_images/druid.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/druid.png-96f709d99ac9800469bf05f2c9638e60.stex" +path="res://.import/druid.png-ed538b42adab8948dd01b4043287cac8.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/druid.png" -dest_files=[ "res://.import/druid.png-96f709d99ac9800469bf05f2c9638e60.stex" ] +source_file="res://extra_images/druid.png" +dest_files=[ "res://.import/druid.png-ed538b42adab8948dd01b4043287cac8.stex" ] [params] diff --git a/used_images/druid_portrait.png b/extra_images/druid_portrait.png similarity index 100% rename from used_images/druid_portrait.png rename to extra_images/druid_portrait.png diff --git a/used_images/druid_portrait.png.import b/extra_images/druid_portrait.png.import similarity index 69% rename from used_images/druid_portrait.png.import rename to extra_images/druid_portrait.png.import index eaac3574..de2dd014 100644 --- a/used_images/druid_portrait.png.import +++ b/extra_images/druid_portrait.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/druid_portrait.png-e456008afd51b193dff7abcc8b0380f5.stex" +path="res://.import/druid_portrait.png-0bb0303453604e2986388d1bf6f7260a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/druid_portrait.png" -dest_files=[ "res://.import/druid_portrait.png-e456008afd51b193dff7abcc8b0380f5.stex" ] +source_file="res://extra_images/druid_portrait.png" +dest_files=[ "res://.import/druid_portrait.png-0bb0303453604e2986388d1bf6f7260a.stex" ] [params] diff --git a/used_images/fern.png b/extra_images/fern.png similarity index 100% rename from used_images/fern.png rename to extra_images/fern.png diff --git a/used_images/fern.png.import b/extra_images/fern.png.import similarity index 73% rename from used_images/fern.png.import rename to extra_images/fern.png.import index 42e0db58..990d25fe 100644 --- a/used_images/fern.png.import +++ b/extra_images/fern.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fern.png-15a40304e0fae568fb2f86a3ba4d85b3.stex" +path="res://.import/fern.png-29bd828ce49cfdeba230da469ab20897.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/fern.png" -dest_files=[ "res://.import/fern.png-15a40304e0fae568fb2f86a3ba4d85b3.stex" ] +source_file="res://extra_images/fern.png" +dest_files=[ "res://.import/fern.png-29bd828ce49cfdeba230da469ab20897.stex" ] [params] diff --git a/used_images/fern_brown.png b/extra_images/fern_brown.png similarity index 100% rename from used_images/fern_brown.png rename to extra_images/fern_brown.png diff --git a/used_images/fern_brown.png.import b/extra_images/fern_brown.png.import similarity index 70% rename from used_images/fern_brown.png.import rename to extra_images/fern_brown.png.import index 71d576c5..36e0df2d 100644 --- a/used_images/fern_brown.png.import +++ b/extra_images/fern_brown.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fern_brown.png-1a715c696472eb4943e092719f3a3809.stex" +path="res://.import/fern_brown.png-e380cab0f2b8ecd31c2890cf92085406.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/fern_brown.png" -dest_files=[ "res://.import/fern_brown.png-1a715c696472eb4943e092719f3a3809.stex" ] +source_file="res://extra_images/fern_brown.png" +dest_files=[ "res://.import/fern_brown.png-e380cab0f2b8ecd31c2890cf92085406.stex" ] [params] diff --git a/used_images/fern_small.png b/extra_images/fern_small.png similarity index 100% rename from used_images/fern_small.png rename to extra_images/fern_small.png diff --git a/used_images/fern_small.png.import b/extra_images/fern_small.png.import similarity index 70% rename from used_images/fern_small.png.import rename to extra_images/fern_small.png.import index 62a926e6..e4ecdfa6 100644 --- a/used_images/fern_small.png.import +++ b/extra_images/fern_small.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fern_small.png-5a61522e3a4ccbbfbb0f65ebcaead162.stex" +path="res://.import/fern_small.png-dba9ccdf259768ac76e74765a653a4ef.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/fern_small.png" -dest_files=[ "res://.import/fern_small.png-5a61522e3a4ccbbfbb0f65ebcaead162.stex" ] +source_file="res://extra_images/fern_small.png" +dest_files=[ "res://.import/fern_small.png-dba9ccdf259768ac76e74765a653a4ef.stex" ] [params] diff --git a/used_images/fern_small_brown.png b/extra_images/fern_small_brown.png similarity index 100% rename from used_images/fern_small_brown.png rename to extra_images/fern_small_brown.png diff --git a/used_images/fern_small_brown.png.import b/extra_images/fern_small_brown.png.import similarity index 69% rename from used_images/fern_small_brown.png.import rename to extra_images/fern_small_brown.png.import index ce0cc4d3..7f8a9a3e 100644 --- a/used_images/fern_small_brown.png.import +++ b/extra_images/fern_small_brown.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fern_small_brown.png-41329c08ae81db4776b234b31a161c84.stex" +path="res://.import/fern_small_brown.png-c59fa118d591e5aa4af854c65c65ef1b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/fern_small_brown.png" -dest_files=[ "res://.import/fern_small_brown.png-41329c08ae81db4776b234b31a161c84.stex" ] +source_file="res://extra_images/fern_small_brown.png" +dest_files=[ "res://.import/fern_small_brown.png-c59fa118d591e5aa4af854c65c65ef1b.stex" ] [params] diff --git a/used_images/ice_pillar.png b/extra_images/ice_pillar.png similarity index 100% rename from used_images/ice_pillar.png rename to extra_images/ice_pillar.png diff --git a/used_images/ice_pillar.png.import b/extra_images/ice_pillar.png.import similarity index 70% rename from used_images/ice_pillar.png.import rename to extra_images/ice_pillar.png.import index 42c2cc7f..fe5a4f69 100644 --- a/used_images/ice_pillar.png.import +++ b/extra_images/ice_pillar.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/ice_pillar.png-884f0c1378683b8f983ca962b7165bb0.stex" +path="res://.import/ice_pillar.png-aada8d0918cf95a770ea51ca6e513ca7.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/ice_pillar.png" -dest_files=[ "res://.import/ice_pillar.png-884f0c1378683b8f983ca962b7165bb0.stex" ] +source_file="res://extra_images/ice_pillar.png" +dest_files=[ "res://.import/ice_pillar.png-aada8d0918cf95a770ea51ca6e513ca7.stex" ] [params] diff --git a/used_images/ice_rock.png b/extra_images/ice_rock.png similarity index 100% rename from used_images/ice_rock.png rename to extra_images/ice_rock.png diff --git a/used_images/ice_rock.png.import b/extra_images/ice_rock.png.import similarity index 71% rename from used_images/ice_rock.png.import rename to extra_images/ice_rock.png.import index e23d240c..6cc390fb 100644 --- a/used_images/ice_rock.png.import +++ b/extra_images/ice_rock.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/ice_rock.png-fa1c1a930138e6d30e3a3b302d54d442.stex" +path="res://.import/ice_rock.png-4a1712fe5ad648823f206a73708694c0.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/ice_rock.png" -dest_files=[ "res://.import/ice_rock.png-fa1c1a930138e6d30e3a3b302d54d442.stex" ] +source_file="res://extra_images/ice_rock.png" +dest_files=[ "res://.import/ice_rock.png-4a1712fe5ad648823f206a73708694c0.stex" ] [params] diff --git a/used_images/lair_druid.png b/extra_images/lair_druid.png similarity index 100% rename from used_images/lair_druid.png rename to extra_images/lair_druid.png diff --git a/used_images/lair_druid.png.import b/extra_images/lair_druid.png.import similarity index 70% rename from used_images/lair_druid.png.import rename to extra_images/lair_druid.png.import index 9e22fa11..66243077 100644 --- a/used_images/lair_druid.png.import +++ b/extra_images/lair_druid.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lair_druid.png-3b4bc07b01abd7e969cf0d4660fb6bc0.stex" +path="res://.import/lair_druid.png-8950102b4465793e4fcea4cba9607c7b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/lair_druid.png" -dest_files=[ "res://.import/lair_druid.png-3b4bc07b01abd7e969cf0d4660fb6bc0.stex" ] +source_file="res://extra_images/lair_druid.png" +dest_files=[ "res://.import/lair_druid.png-8950102b4465793e4fcea4cba9607c7b.stex" ] [params] diff --git a/used_images/lantern_pst.png b/extra_images/lantern_pst.png similarity index 100% rename from used_images/lantern_pst.png rename to extra_images/lantern_pst.png diff --git a/used_images/lantern_pst.png.import b/extra_images/lantern_pst.png.import similarity index 70% rename from used_images/lantern_pst.png.import rename to extra_images/lantern_pst.png.import index 768fe002..e3163c47 100644 --- a/used_images/lantern_pst.png.import +++ b/extra_images/lantern_pst.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lantern_pst.png-140d56a402854be02486119c55bf2868.stex" +path="res://.import/lantern_pst.png-b668c72a99986ca80d5c9854357f017b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/lantern_pst.png" -dest_files=[ "res://.import/lantern_pst.png-140d56a402854be02486119c55bf2868.stex" ] +source_file="res://extra_images/lantern_pst.png" +dest_files=[ "res://.import/lantern_pst.png-b668c72a99986ca80d5c9854357f017b.stex" ] [params] diff --git a/used_images/lava_pillar.png b/extra_images/lava_pillar.png similarity index 100% rename from used_images/lava_pillar.png rename to extra_images/lava_pillar.png diff --git a/used_images/lava_pillar.png.import b/extra_images/lava_pillar.png.import similarity index 70% rename from used_images/lava_pillar.png.import rename to extra_images/lava_pillar.png.import index d6cc5a19..7e2e08e5 100644 --- a/used_images/lava_pillar.png.import +++ b/extra_images/lava_pillar.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lava_pillar.png-c68d176374b96970ae4779707989cbf8.stex" +path="res://.import/lava_pillar.png-02eb8a8a4a556e59435198692e117acc.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/lava_pillar.png" -dest_files=[ "res://.import/lava_pillar.png-c68d176374b96970ae4779707989cbf8.stex" ] +source_file="res://extra_images/lava_pillar.png" +dest_files=[ "res://.import/lava_pillar.png-02eb8a8a4a556e59435198692e117acc.stex" ] [params] diff --git a/used_images/lava_rock.png b/extra_images/lava_rock.png similarity index 100% rename from used_images/lava_rock.png rename to extra_images/lava_rock.png diff --git a/used_images/lava_rock.png.import b/extra_images/lava_rock.png.import similarity index 71% rename from used_images/lava_rock.png.import rename to extra_images/lava_rock.png.import index 32965f79..34a84f42 100644 --- a/used_images/lava_rock.png.import +++ b/extra_images/lava_rock.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lava_rock.png-d523e55866694c3403dd8dc2eb790b0d.stex" +path="res://.import/lava_rock.png-5eda346463fee3a65da5507bc348bd71.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/lava_rock.png" -dest_files=[ "res://.import/lava_rock.png-d523e55866694c3403dd8dc2eb790b0d.stex" ] +source_file="res://extra_images/lava_rock.png" +dest_files=[ "res://.import/lava_rock.png-5eda346463fee3a65da5507bc348bd71.stex" ] [params] diff --git a/used_images/lilypad.png b/extra_images/lilypad.png similarity index 100% rename from used_images/lilypad.png rename to extra_images/lilypad.png diff --git a/used_images/lilypad.png.import b/extra_images/lilypad.png.import similarity index 72% rename from used_images/lilypad.png.import rename to extra_images/lilypad.png.import index 8ba7871c..6fb3c6eb 100644 --- a/used_images/lilypad.png.import +++ b/extra_images/lilypad.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lilypad.png-7d79cbc6a93d68724c4b90f76325d294.stex" +path="res://.import/lilypad.png-02da1e606aa3714ebde97e957834291a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/lilypad.png" -dest_files=[ "res://.import/lilypad.png-7d79cbc6a93d68724c4b90f76325d294.stex" ] +source_file="res://extra_images/lilypad.png" +dest_files=[ "res://.import/lilypad.png-02da1e606aa3714ebde97e957834291a.stex" ] [params] diff --git a/used_images/mushroom_green.png b/extra_images/mushroom_green.png similarity index 100% rename from used_images/mushroom_green.png rename to extra_images/mushroom_green.png diff --git a/used_images/mushroom_green.png.import b/extra_images/mushroom_green.png.import similarity index 69% rename from used_images/mushroom_green.png.import rename to extra_images/mushroom_green.png.import index 7a97eb30..076bd7c7 100644 --- a/used_images/mushroom_green.png.import +++ b/extra_images/mushroom_green.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/mushroom_green.png-3add3d7b72da9d8c44ded01f3c4ffda3.stex" +path="res://.import/mushroom_green.png-812f3bfc0d18e65e9768033c02dbd3cf.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/mushroom_green.png" -dest_files=[ "res://.import/mushroom_green.png-3add3d7b72da9d8c44ded01f3c4ffda3.stex" ] +source_file="res://extra_images/mushroom_green.png" +dest_files=[ "res://.import/mushroom_green.png-812f3bfc0d18e65e9768033c02dbd3cf.stex" ] [params] diff --git a/used_images/mushroom_red.png b/extra_images/mushroom_red.png similarity index 100% rename from used_images/mushroom_red.png rename to extra_images/mushroom_red.png diff --git a/used_images/mushroom_red.png.import b/extra_images/mushroom_red.png.import similarity index 70% rename from used_images/mushroom_red.png.import rename to extra_images/mushroom_red.png.import index 7c8af651..50d4a4e5 100644 --- a/used_images/mushroom_red.png.import +++ b/extra_images/mushroom_red.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/mushroom_red.png-0d440f54d341a25345e0a474312111d8.stex" +path="res://.import/mushroom_red.png-19b48b5fda207c54cb5ec9068e20751f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/mushroom_red.png" -dest_files=[ "res://.import/mushroom_red.png-0d440f54d341a25345e0a474312111d8.stex" ] +source_file="res://extra_images/mushroom_red.png" +dest_files=[ "res://.import/mushroom_red.png-19b48b5fda207c54cb5ec9068e20751f.stex" ] [params] diff --git a/used_images/mushroom_yellow.png b/extra_images/mushroom_yellow.png similarity index 100% rename from used_images/mushroom_yellow.png rename to extra_images/mushroom_yellow.png diff --git a/used_images/mushroom_yellow.png.import b/extra_images/mushroom_yellow.png.import similarity index 69% rename from used_images/mushroom_yellow.png.import rename to extra_images/mushroom_yellow.png.import index 2837f849..37acba15 100644 --- a/used_images/mushroom_yellow.png.import +++ b/extra_images/mushroom_yellow.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/mushroom_yellow.png-e49443c109a5b5f134420d9493e2da88.stex" +path="res://.import/mushroom_yellow.png-23851374929928deece1728e481f4fdc.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/mushroom_yellow.png" -dest_files=[ "res://.import/mushroom_yellow.png-e49443c109a5b5f134420d9493e2da88.stex" ] +source_file="res://extra_images/mushroom_yellow.png" +dest_files=[ "res://.import/mushroom_yellow.png-23851374929928deece1728e481f4fdc.stex" ] [params] diff --git a/used_images/potion_brown.png b/extra_images/potion_brown.png similarity index 100% rename from used_images/potion_brown.png rename to extra_images/potion_brown.png diff --git a/used_images/potion_brown.png.import b/extra_images/potion_brown.png.import similarity index 70% rename from used_images/potion_brown.png.import rename to extra_images/potion_brown.png.import index 1c1a48bc..1f8c1fa0 100644 --- a/used_images/potion_brown.png.import +++ b/extra_images/potion_brown.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/potion_brown.png-97e86030a503e7fdcd0f6b787f73e22b.stex" +path="res://.import/potion_brown.png-ba7df86f9c4dac6783bd0551d4a4b1a4.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/potion_brown.png" -dest_files=[ "res://.import/potion_brown.png-97e86030a503e7fdcd0f6b787f73e22b.stex" ] +source_file="res://extra_images/potion_brown.png" +dest_files=[ "res://.import/potion_brown.png-ba7df86f9c4dac6783bd0551d4a4b1a4.stex" ] [params] diff --git a/used_images/potion_red.png b/extra_images/potion_red.png similarity index 100% rename from used_images/potion_red.png rename to extra_images/potion_red.png diff --git a/used_images/potion_red.png.import b/extra_images/potion_red.png.import similarity index 70% rename from used_images/potion_red.png.import rename to extra_images/potion_red.png.import index 2dd0e067..815f7d04 100644 --- a/used_images/potion_red.png.import +++ b/extra_images/potion_red.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/potion_red.png-3607618590029baf0fac09964d43fe5a.stex" +path="res://.import/potion_red.png-452e39fc2926fe61a7caf373a397cf66.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/potion_red.png" -dest_files=[ "res://.import/potion_red.png-3607618590029baf0fac09964d43fe5a.stex" ] +source_file="res://extra_images/potion_red.png" +dest_files=[ "res://.import/potion_red.png-452e39fc2926fe61a7caf373a397cf66.stex" ] [params] diff --git a/used_images/potion_white.png b/extra_images/potion_white.png similarity index 100% rename from used_images/potion_white.png rename to extra_images/potion_white.png diff --git a/used_images/potion_white.png.import b/extra_images/potion_white.png.import similarity index 70% rename from used_images/potion_white.png.import rename to extra_images/potion_white.png.import index 34017d80..4e5ce76f 100644 --- a/used_images/potion_white.png.import +++ b/extra_images/potion_white.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/potion_white.png-ae2125ed3aca4a5eca1d5b4edecc5c96.stex" +path="res://.import/potion_white.png-1620eab91977d7046f3b10b55d0244bf.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/potion_white.png" -dest_files=[ "res://.import/potion_white.png-ae2125ed3aca4a5eca1d5b4edecc5c96.stex" ] +source_file="res://extra_images/potion_white.png" +dest_files=[ "res://.import/potion_white.png-1620eab91977d7046f3b10b55d0244bf.stex" ] [params] diff --git a/used_images/potion_yellow.png b/extra_images/potion_yellow.png similarity index 100% rename from used_images/potion_yellow.png rename to extra_images/potion_yellow.png diff --git a/used_images/potion_yellow.png.import b/extra_images/potion_yellow.png.import similarity index 69% rename from used_images/potion_yellow.png.import rename to extra_images/potion_yellow.png.import index af6fa275..300d05b1 100644 --- a/used_images/potion_yellow.png.import +++ b/extra_images/potion_yellow.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/potion_yellow.png-019a1b46814ea6aabf5c8e7ab9375ed4.stex" +path="res://.import/potion_yellow.png-ac4c82b7d1a7f072ba960638e0725af5.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/potion_yellow.png" -dest_files=[ "res://.import/potion_yellow.png-019a1b46814ea6aabf5c8e7ab9375ed4.stex" ] +source_file="res://extra_images/potion_yellow.png" +dest_files=[ "res://.import/potion_yellow.png-ac4c82b7d1a7f072ba960638e0725af5.stex" ] [params] diff --git a/used_images/rock.png b/extra_images/rock.png similarity index 100% rename from used_images/rock.png rename to extra_images/rock.png diff --git a/used_images/rock.png.import b/extra_images/rock.png.import similarity index 73% rename from used_images/rock.png.import rename to extra_images/rock.png.import index c43ed795..04bb7c01 100644 --- a/used_images/rock.png.import +++ b/extra_images/rock.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/rock.png-0b96a93148362a2da52336597eeecc4d.stex" +path="res://.import/rock.png-bf69326a7a553270a9713376cab0de31.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/rock.png" -dest_files=[ "res://.import/rock.png-0b96a93148362a2da52336597eeecc4d.stex" ] +source_file="res://extra_images/rock.png" +dest_files=[ "res://.import/rock.png-bf69326a7a553270a9713376cab0de31.stex" ] [params] diff --git a/used_images/rock_pillar.png b/extra_images/rock_pillar.png similarity index 100% rename from used_images/rock_pillar.png rename to extra_images/rock_pillar.png diff --git a/used_images/rock_pillar.png.import b/extra_images/rock_pillar.png.import similarity index 70% rename from used_images/rock_pillar.png.import rename to extra_images/rock_pillar.png.import index d9f7db1b..8dd4fa1f 100644 --- a/used_images/rock_pillar.png.import +++ b/extra_images/rock_pillar.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/rock_pillar.png-24c4b096793f066020f871ed08eba11c.stex" +path="res://.import/rock_pillar.png-26f196a897662d0c5f16ed04667f9aab.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/rock_pillar.png" -dest_files=[ "res://.import/rock_pillar.png-24c4b096793f066020f871ed08eba11c.stex" ] +source_file="res://extra_images/rock_pillar.png" +dest_files=[ "res://.import/rock_pillar.png-26f196a897662d0c5f16ed04667f9aab.stex" ] [params] diff --git a/used_images/statue_3.png b/extra_images/statue_3.png similarity index 100% rename from used_images/statue_3.png rename to extra_images/statue_3.png diff --git a/used_images/statue_3.png.import b/extra_images/statue_3.png.import similarity index 71% rename from used_images/statue_3.png.import rename to extra_images/statue_3.png.import index 0f0fb66f..07e3da4b 100644 --- a/used_images/statue_3.png.import +++ b/extra_images/statue_3.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/statue_3.png-3bcd7d8cb19fa44f3029dcc4d584e603.stex" +path="res://.import/statue_3.png-368cd5995829573787fa727861cc69b0.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/statue_3.png" -dest_files=[ "res://.import/statue_3.png-3bcd7d8cb19fa44f3029dcc4d584e603.stex" ] +source_file="res://extra_images/statue_3.png" +dest_files=[ "res://.import/statue_3.png-368cd5995829573787fa727861cc69b0.stex" ] [params] diff --git a/used_images/statue_4.png b/extra_images/statue_4.png similarity index 100% rename from used_images/statue_4.png rename to extra_images/statue_4.png diff --git a/used_images/statue_4.png.import b/extra_images/statue_4.png.import similarity index 71% rename from used_images/statue_4.png.import rename to extra_images/statue_4.png.import index ae005fc9..b2ca4538 100644 --- a/used_images/statue_4.png.import +++ b/extra_images/statue_4.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/statue_4.png-43984e79de6897ccfb99689d0b00b15f.stex" +path="res://.import/statue_4.png-e0c6f7dffb393dd987b10754a10854e6.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/statue_4.png" -dest_files=[ "res://.import/statue_4.png-43984e79de6897ccfb99689d0b00b15f.stex" ] +source_file="res://extra_images/statue_4.png" +dest_files=[ "res://.import/statue_4.png-e0c6f7dffb393dd987b10754a10854e6.stex" ] [params] diff --git a/used_images/time_mage.png b/extra_images/time_mage.png similarity index 100% rename from used_images/time_mage.png rename to extra_images/time_mage.png diff --git a/used_images/time_mage.png.import b/extra_images/time_mage.png.import similarity index 71% rename from used_images/time_mage.png.import rename to extra_images/time_mage.png.import index 8fdfbdd3..3320a86f 100644 --- a/used_images/time_mage.png.import +++ b/extra_images/time_mage.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/time_mage.png-b514b1b160ae1f00c2c835f3a87e11ca.stex" +path="res://.import/time_mage.png-dbb7745ac37a69cba00ecdb0ba701051.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/time_mage.png" -dest_files=[ "res://.import/time_mage.png-b514b1b160ae1f00c2c835f3a87e11ca.stex" ] +source_file="res://extra_images/time_mage.png" +dest_files=[ "res://.import/time_mage.png-dbb7745ac37a69cba00ecdb0ba701051.stex" ] [params] diff --git a/used_images/time_mage_portrait.png b/extra_images/time_mage_portrait.png similarity index 100% rename from used_images/time_mage_portrait.png rename to extra_images/time_mage_portrait.png diff --git a/used_images/time_mage_portrait.png.import b/extra_images/time_mage_portrait.png.import similarity index 68% rename from used_images/time_mage_portrait.png.import rename to extra_images/time_mage_portrait.png.import index 2f47c34a..05a21bf0 100644 --- a/used_images/time_mage_portrait.png.import +++ b/extra_images/time_mage_portrait.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/time_mage_portrait.png-3fa991cf35228f786c69a87276ac1f7a.stex" +path="res://.import/time_mage_portrait.png-b21d5d18bf7b6891befc5d8643231f5a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/time_mage_portrait.png" -dest_files=[ "res://.import/time_mage_portrait.png-3fa991cf35228f786c69a87276ac1f7a.stex" ] +source_file="res://extra_images/time_mage_portrait.png" +dest_files=[ "res://.import/time_mage_portrait.png-b21d5d18bf7b6891befc5d8643231f5a.stex" ] [params] diff --git a/used_images/tnt.png b/extra_images/tnt.png similarity index 100% rename from used_images/tnt.png rename to extra_images/tnt.png diff --git a/used_images/tnt.png.import b/extra_images/tnt.png.import similarity index 73% rename from used_images/tnt.png.import rename to extra_images/tnt.png.import index 21cfb575..974b79eb 100644 --- a/used_images/tnt.png.import +++ b/extra_images/tnt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/tnt.png-950baebab93520b0654b41e7c5611f62.stex" +path="res://.import/tnt.png-14847d9a90d397734655ff52290139c4.stex" metadata={ "vram_texture": false } [deps] -source_file="res://used_images/tnt.png" -dest_files=[ "res://.import/tnt.png-950baebab93520b0654b41e7c5611f62.stex" ] +source_file="res://extra_images/tnt.png" +dest_files=[ "res://.import/tnt.png-14847d9a90d397734655ff52290139c4.stex" ] [params] diff --git a/unearthdata/custom-object-images/!readme.txt b/unearthdata/custom-object-images/!readme.txt new file mode 100644 index 00000000..4ccbada2 --- /dev/null +++ b/unearthdata/custom-object-images/!readme.txt @@ -0,0 +1,10 @@ +To set an image for a custom object, add a png to this directory with a filename that matches the name of the object. Spaces are treated the same as underscores, case-insensitive. + +Add "_portrait" onto the end of the filename for a separate image to be used in the Thing selection window. + +--- + +New objects can also be added by editing the Unearth source code: +https://github.com/rainlizard/Unearth/blob/main/Autoload/ObjectNames.gd +https://github.com/rainlizard/Unearth/blob/main/Autoload/Graphics.gd +https://github.com/rainlizard/Unearth/tree/main/extra_images/ \ No newline at end of file