This commit is contained in:
Bryce
2025-12-21 12:48:00 -08:00
parent 93f5522d3d
commit 77a9f73331
81 changed files with 722 additions and 106 deletions

View File

@@ -183,10 +183,10 @@ class Transition:
var new_scene = next.instantiate()
new_scene.name="background"
parent.remove_child(subject)
var pos = new_scene.get_node(position)
var pos : Node2D = new_scene.get_node(position)
var c = new_scene.get_children()
if new_scene is Scene:
new_scene.starting_point = pos.position
new_scene.starting_point = pos.global_position
parent.add_child(new_scene)