mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
5 lines
131 B
GDScript3
5 lines
131 B
GDScript3
|
extends Camera2D
|
||
|
|
||
|
func _process(delta: float) -> void:
|
||
|
global_position = lerp(global_position, get_global_mouse_position(), 0.05)
|