delta in _physics_process
I am moving a CharacterBody2D using _physics_process. I get an Vector2D for the direction and then I have the code:
velocity = input_direction * speed
move_and_slide()
Which works and the movement is consistent even if I change the physics framerate even though I ignored delta entirely. So is delta time added automatically?