diff options
author | bd <bdunahu@operationnull.com> | 2025-05-22 13:50:49 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-22 13:50:49 -0400 |
commit | 8c5c4863aeacb4afcf70f339df6d601e2df1a7a6 (patch) | |
tree | 6c2af54a18271534864a7a1daed7814ebac5abd1 /scripts/path_spawner.gd | |
parent | 80e145ba2b85e08f895e76ba6a03bb67bc9ce9ea (diff) |
Reorganized files into scenes and scripts
Diffstat (limited to 'scripts/path_spawner.gd')
-rw-r--r-- | scripts/path_spawner.gd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/path_spawner.gd b/scripts/path_spawner.gd new file mode 100644 index 0000000..9b8f663 --- /dev/null +++ b/scripts/path_spawner.gd @@ -0,0 +1,7 @@ +extends Node2D + +@onready var path = preload("res://scenes/L1.tscn") + +func _on_timer_timeout(): + var tmp = path.instantiate() + add_child(tmp) |