This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

How do you make my player move in it's facing direction?
For example, My player would rotate to the right and once I press a certain key, It should move forward or backward on where it's facing instead of moving up or down the y axis.

Help would be appreciated. Thank you.

in Engine by (12 points)

1 Answer

+1 vote

You can use the transform for this. I'm assuming you're in 2D, but the principle is the same in 3D.

In 2D transform.x is the object's local forward axis. So to always move forward regardless of rotation, you could do this for example:

func _process(delta):
    if Input.is_action_pressed("forward"):
        position += transform.x * speed * delta
by (22,191 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.