8 lines
184 B
GDScript
8 lines
184 B
GDScript
extends Node2D
|
|
|
|
func _ready() -> void:
|
|
#$YSort/Player.position = get_viewport_rect().size / 2
|
|
$YSort/Player.position = Vector2(0,0)
|
|
$YSort/Player.load_hud($HUD)
|
|
return
|