4 lines
129 B
GDScript
4 lines
129 B
GDScript
extends Camera2D
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
global_position = get_owner().get_node("Player").global_position
|