Project reorganization

Reorganized the project so it's a little less all over the place. For example, world scenes are now in scenes/world. I also moved all scripts to the script directory.
This commit is contained in:
Anthony Foxclaw 2020-06-28 14:58:49 -04:00
parent 6ce7d58163
commit dbac16804c
7 changed files with 35 additions and 44 deletions

View file

@ -9,8 +9,7 @@ var motion = Vector2()
var spawned = false
func _ready():
$SndSpawn.play(0);
pass
$SndSpawn.play(0)
func _physics_process(delta):
@ -40,4 +39,3 @@ func _physics_process(delta):
#print(motion)
motion = move_and_slide(motion, UP)
pass