From 6d4c977c35eb963b644edab491a6888bfc0f7b2e Mon Sep 17 00:00:00 2001 From: Zakarya Date: Sat, 7 Oct 2023 18:26:10 -0700 Subject: [PATCH] Fix a couple oopsies --- data/character/character.tscn | 1 - project.godot | 2 +- scenes/world.tscn | 4 ++-- {script => scripts}/game_data.gd | 0 {script => scripts}/world.gd | 0 5 files changed, 3 insertions(+), 4 deletions(-) rename {script => scripts}/game_data.gd (100%) rename {script => scripts}/world.gd (100%) diff --git a/data/character/character.tscn b/data/character/character.tscn index ff756df..73b7b4d 100644 --- a/data/character/character.tscn +++ b/data/character/character.tscn @@ -77,7 +77,6 @@ texture = ExtResource("1_f7cgp") [node name="tool" type="Sprite2D" parent="body_pivot/body"] z_index = -1 -position = Vector2(-80, -120) texture = ExtResource("3_c34pt") [node name="hud" type="Control" parent="."] diff --git a/project.godot b/project.godot index 41a7d39..9f2560d 100644 --- a/project.godot +++ b/project.godot @@ -17,7 +17,7 @@ config/icon="res://icon.svg" [autoload] -game_data="*res://script/game_data.gd" +game_data="*res://scripts/game_data.gd" [display] diff --git a/scenes/world.tscn b/scenes/world.tscn index b6d4517..40a7033 100644 --- a/scenes/world.tscn +++ b/scenes/world.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=8 format=3 uid="uid://deus4t8mmx6pp"] -[ext_resource type="Script" path="res://script/world.gd" id="1_fj2dk"] +[ext_resource type="Script" path="res://scripts/world.gd" id="1_d5cpg"] [ext_resource type="PackedScene" uid="uid://4dsm0l7s6vki" path="res://data/character/character.tscn" id="1_gadv2"] [ext_resource type="Texture2D" uid="uid://vyhureoc5qlp" path="res://textures/world/biome/forest/grass.svg" id="2_xtc31"] @@ -20,7 +20,7 @@ normal = Vector2(1, 0) distance = -3000.0 [node name="world" type="Node2D"] -script = ExtResource("1_fj2dk") +script = ExtResource("1_d5cpg") [node name="character" parent="." instance=ExtResource("1_gadv2")] diff --git a/script/game_data.gd b/scripts/game_data.gd similarity index 100% rename from script/game_data.gd rename to scripts/game_data.gd diff --git a/script/world.gd b/scripts/world.gd similarity index 100% rename from script/world.gd rename to scripts/world.gd