The moving platform in level 1 wnow moves up and down. I finished level one.

This commit is contained in:
2026-06-22 16:50:07 -06:00
parent bdd99c1c78
commit a975d466e6
5 changed files with 56 additions and 18 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ func _ready() -> void:
current_level_root = get_node("LevelRoot")
_load_level(level)
func _load_level(level :int) -> void:
func _load_level(level) -> void:
if current_level_root:
current_level_root.queue_free()
var level_path = "res://level%s" % level +".tscn"