mirror of
https://github.com/Steffo99/nanogolf.git
synced 2024-11-21 23:54:21 +00:00
10 lines
144 B
GDScript
10 lines
144 B
GDScript
extends Camera2D
|
|
class_name FollowCamera
|
|
|
|
|
|
@export var target: Node2D
|
|
|
|
|
|
func _physics_process(_delta):
|
|
if target:
|
|
position = target.position
|