mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 15:38:14 +00:00
9 lines
214 B
GDScript
Executable File
9 lines
214 B
GDScript
Executable File
extends Node2D
|
|
|
|
func _ready() -> void:
|
|
Global.level_editor.level_start.connect(move_players)
|
|
|
|
func move_players() -> void:
|
|
for i in get_tree().get_nodes_in_group("Players"):
|
|
i.global_position = global_position
|