• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by Garrett Chase 3 · Mar 09, 2010 at 12:50 AM · rotationmovementcharactercontrollermodelorientation

How can I get my model to face the direction it is moving?

I want my model to face the direction that it is moving in. Does anyone have some good code to do this? Here is the code that I am using to move the model:

        moveDirection = new Vector3((Input.GetAxis("Horizontal")), (-Input.GetAxis("Vertical")), 0);
        moveDirection = transform.TransformDirection(moveDirection);
        moveDirection *= speed;

I want the model to rotate and face the direction that it is moving. Like I said if anyone has any good code for doing this, I would really appreciate it.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
4

Answer by Jaap Kreijkamp · Mar 09, 2010 at 03:52 AM

A simple way is to use LookAt. So this would give something like:

moveDirection = new Vector3((Input.GetAxis("Horizontal")), (-Input.GetAxis("Vertical")), 0);
moveDirection = transform.TransformDirection(moveDirection);
moveDirection *= speed;
if (moveDirection.sqrMagnitude > 0f) {
    transform.LookAt(transform.position + moveDirection, Vector3.forward);
}
Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Garrett Chase 3 · Mar 11, 2010 at 03:00 AM 0
Share

Thanks, this should work. I just have to do a little tuning because for some reason my model's axis' are messed up.

avatar image
-1

Answer by mike1602 · Mar 19, 2010 at 10:57 AM

It is not working for me. Any suggestions?

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Ricardo · Mar 19, 2010 at 11:57 AM 0
Share

As your question will move up and down depending on the votes, you'll need to add more details on what exactly isn't working for you for someone to be able to help.

avatar image Lipis · Mar 19, 2010 at 12:47 PM 0
Share

@mike1602 and this is not exactly the right spot to ask questions.. this area is only for answers.. so consider adding comment ins$$anonymous$$d if you need more details on the same question... :)

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

Why is Quaternion.FromToRotation() not working properly? 3 Answers

How to change the angle my character falls at 1 Answer

How do i rotate based on direction character is moving in 1 Answer

How can I move a character to a point in a straight line with CharacterController.Move while rotating him? 2 Answers

Change Speed to Rotate Character 90 degrees (Isometric view) 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges