This commit is contained in:
Rendo 2025-07-13 04:55:33 +05:00
commit bb7c0f63c4
12 changed files with 482 additions and 28 deletions

View file

@ -27,7 +27,7 @@ script/source = "extends Node
@export var where_to_map : Node
func _ready() -> void:
while get_tree().paused:
while get_tree() != null and get_tree().paused:
await get_tree().process_frame
for i in range(where_to_map.get_child_count()):
var key = InputEventKey.new()