mirror of
https://github.com/Theaninova/mhlib.git
synced 2025-12-13 04:56:20 +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
|