I am working on my first 3d game and I'm using a function to handle user inputs. func handle_inputs(dir: Vector3) -> Vector3: #Do stuff if Input.is_action_pressed("world_right"): dir.x += 1 #I skipped ...