Removed delta from virtual mouse

This commit is contained in:
2024-09-03 15:30:16 -05:00
parent 6bea7b9a6e
commit 29086038a9

View File

@ -10,4 +10,5 @@ func _ready():
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
var movement = Input.get_vector("move_left","move_right","move_forward", "move_back")
move_and_collide(movement * Cursor_Speed * delta)
#var movement = Vector2(1,1)
move_and_collide(movement * Cursor_Speed)