Moves stuff around, made a main menu and scene mgr
This commit is contained in:
parent
b2e3a3957b
commit
6c023a60a6
37 changed files with 888 additions and 214 deletions
8
Utilities/SceneManager/SceneManager.gd
Normal file
8
Utilities/SceneManager/SceneManager.gd
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
class_name SceneManagerClass
|
||||
extends Node
|
||||
|
||||
signal change_scene(scene_name: String)
|
||||
|
||||
func load_scene(scene_name: String) -> void:
|
||||
Log.pr("Sending signal to change scene", scene_name)
|
||||
emit_signal("change_scene", scene_name)
|
||||
1
Utilities/SceneManager/SceneManager.gd.uid
Normal file
1
Utilities/SceneManager/SceneManager.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://c43gwdbpsxxeh
|
||||
Loading…
Add table
Add a link
Reference in a new issue