Hey guys,
I'm trying to use the move_to
function in a KinematicBody2D
to move it to the centre of the screen, like the following.
func _ready():
set_fixed_process(true)
func _fixed_process(delta):
move_to(center)
The problem is that the object is thrown there really fast and I was wondering if there's any way to control its speed.