From fe5c4fdfad86d1c2989695e5185ec62672ff7a1f Mon Sep 17 00:00:00 2001 From: troido Date: Sat, 6 Feb 2021 23:18:24 +0100 Subject: [PATCH] changed directory names to lowercase --- {Assets => assets}/giraffe_head.png | Bin {Assets => assets}/giraffe_head.png.import | 6 +++--- {Assets => assets}/tree.png | Bin {Assets => assets}/tree.png.import | 6 +++--- project.godot | 2 +- {Scenes => scenes}/GiraffeHead.tscn | 4 ++-- {Scenes => scenes}/Tree.tscn | 2 +- {Scenes => scenes}/World.tscn | 4 ++-- {Scripts => scripts}/GiraffeHead.gd | 0 9 files changed, 12 insertions(+), 12 deletions(-) rename {Assets => assets}/giraffe_head.png (100%) rename {Assets => assets}/giraffe_head.png.import (69%) rename {Assets => assets}/tree.png (100%) rename {Assets => assets}/tree.png.import (72%) rename {Scenes => scenes}/GiraffeHead.tscn (72%) rename {Scenes => scenes}/Tree.tscn (68%) rename {Scenes => scenes}/World.tscn (69%) rename {Scripts => scripts}/GiraffeHead.gd (100%) diff --git a/Assets/giraffe_head.png b/assets/giraffe_head.png similarity index 100% rename from Assets/giraffe_head.png rename to assets/giraffe_head.png diff --git a/Assets/giraffe_head.png.import b/assets/giraffe_head.png.import similarity index 69% rename from Assets/giraffe_head.png.import rename to assets/giraffe_head.png.import index e8486b3..dd9a475 100644 --- a/Assets/giraffe_head.png.import +++ b/assets/giraffe_head.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/giraffe_head.png-54af3d9430172b37967e6a57a8c3275d.stex" +path="res://.import/giraffe_head.png-bcf8f28c785eb61baba64c1436b8ffef.stex" metadata={ "vram_texture": false } [deps] -source_file="res://Assets/giraffe_head.png" -dest_files=[ "res://.import/giraffe_head.png-54af3d9430172b37967e6a57a8c3275d.stex" ] +source_file="res://assets/giraffe_head.png" +dest_files=[ "res://.import/giraffe_head.png-bcf8f28c785eb61baba64c1436b8ffef.stex" ] [params] diff --git a/Assets/tree.png b/assets/tree.png similarity index 100% rename from Assets/tree.png rename to assets/tree.png diff --git a/Assets/tree.png.import b/assets/tree.png.import similarity index 72% rename from Assets/tree.png.import rename to assets/tree.png.import index 15f5d37..cd0af4c 100644 --- a/Assets/tree.png.import +++ b/assets/tree.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/tree.png-f0858fcddf0a23aa79accde76137cff6.stex" +path="res://.import/tree.png-bf64094b89302dd1be83aa5edf9988ef.stex" metadata={ "vram_texture": false } [deps] -source_file="res://Assets/tree.png" -dest_files=[ "res://.import/tree.png-f0858fcddf0a23aa79accde76137cff6.stex" ] +source_file="res://assets/tree.png" +dest_files=[ "res://.import/tree.png-bf64094b89302dd1be83aa5edf9988ef.stex" ] [params] diff --git a/project.godot b/project.godot index db1278d..612acaf 100644 --- a/project.godot +++ b/project.godot @@ -16,7 +16,7 @@ _global_script_class_icons={ [application] config/name="giraffesnake" -run/main_scene="res://Scenes/World.tscn" +run/main_scene="res://scenes/World.tscn" config/icon="res://icon.png" [input] diff --git a/Scenes/GiraffeHead.tscn b/scenes/GiraffeHead.tscn similarity index 72% rename from Scenes/GiraffeHead.tscn rename to scenes/GiraffeHead.tscn index 8b290ab..bc17262 100644 --- a/Scenes/GiraffeHead.tscn +++ b/scenes/GiraffeHead.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=4 format=2] -[ext_resource path="res://Assets/giraffe_head.png" type="Texture" id=1] -[ext_resource path="res://Scripts/GiraffeHead.gd" type="Script" id=2] +[ext_resource path="res://assets/giraffe_head.png" type="Texture" id=1] +[ext_resource path="res://scripts/GiraffeHead.gd" type="Script" id=2] [sub_resource type="RectangleShape2D" id=1] diff --git a/Scenes/Tree.tscn b/scenes/Tree.tscn similarity index 68% rename from Scenes/Tree.tscn rename to scenes/Tree.tscn index 7895353..e707dd6 100644 --- a/Scenes/Tree.tscn +++ b/scenes/Tree.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=2] -[ext_resource path="res://Assets/tree.png" type="Texture" id=1] +[ext_resource path="res://assets/tree.png" type="Texture" id=1] [node name="Tree" type="Node2D"] diff --git a/Scenes/World.tscn b/scenes/World.tscn similarity index 69% rename from Scenes/World.tscn rename to scenes/World.tscn index 7720d98..4b6c7d1 100644 --- a/Scenes/World.tscn +++ b/scenes/World.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=3 format=2] -[ext_resource path="res://Scenes/GiraffeHead.tscn" type="PackedScene" id=1] -[ext_resource path="res://Scenes/Tree.tscn" type="PackedScene" id=2] +[ext_resource path="res://scenes/GiraffeHead.tscn" type="PackedScene" id=1] +[ext_resource path="res://scenes/Tree.tscn" type="PackedScene" id=2] [node name="World" type="Node2D"] diff --git a/Scripts/GiraffeHead.gd b/scripts/GiraffeHead.gd similarity index 100% rename from Scripts/GiraffeHead.gd rename to scripts/GiraffeHead.gd