mirror of
https://github.com/Theaninova/mhlib.git
synced 2025-12-12 12:36:17 +00:00
8 lines
118 B
GDScript
8 lines
118 B
GDScript
extends Camera2D
|
|
|
|
var player: CharacterBody2D
|
|
|
|
func _process(delta: float) -> void:
|
|
position = player.position
|
|
pass
|