Hello, I am following this tut but when I start to move the player, it moves EXTREMLY slow and it doesnt really move unless I up the value to like this… (see below) can you help? Thanks
extends RigidBody2D
func _physics_process(delta):
if Input.is_action_just_pressed(“move_right”):
apply_force(Vector2(1125, 0))
if Input.is_action_just_pressed(“move_left”):
apply_force(Vector2(-1125, 0))
if Input.is_action_just_pressed(“move_up”):
apply_force(Vector2(0,-1125))
if Input.is_action_just_pressed(“move_down”):
apply_force(Vector2(1125, 0))