Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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
0
Question by Oninji · Dec 08, 2011 at 07:09 PM · rotationcharactercontrol

Character Rotation point at Mouse

Greetings,

In my game my character is saw from a top-view camera. I want my character rotation to alway point toward the mice.

So I think I'd need to have the component which indicate where my mice is in World Position rather than in GUI position.

Comment
Add comment · Show 2
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 cj_coimbra · Dec 08, 2011 at 07:40 PM 0
Share

Read mouse with Input.mousePosition. Get it to world position with Camera.ScreenToWorldPoint and then set your character Y rotation with something like Quaternion.LookRotation(target - current)

avatar image Oninji · Dec 08, 2011 at 08:48 PM 0
Share

Care to elaborate?

I tried some methodes using this and it doesn't face the mouse, it moves... But doesn't face the mice using the methode Script Reference is using.

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by cj_coimbra · Dec 08, 2011 at 09:34 PM

In the test scene I put a cube and a plane under it. I pointed the camera downward to simulate your top-down view. I also tagged the plane as "Plane" (duh)... Worked fine here but you will have to make adjustments as you will probably have other objetcs other than the floor (represented as the Plane in this example). But this should help you find your way.

 private Vector3 lookRotationPoint;
     void Update () 
     {        
         Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
         RaycastHit hit;
         if (Physics.Raycast(ray, out hit))
         {
             if (hit.collider.gameObject.tag == "Plane")
             {
 
                 lookRotationPoint = hit.point - transform.position;
                 transform.rotation = Quaternion.LookRotation(lookRotationPoint.normalized);
                 transform.rotation = Quaternion.Euler(0, transform.rotation.eulerAngles.y, 0);
             }
         }
     }
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 cj_coimbra · Dec 08, 2011 at 09:35 PM 0
Share

Oh, and this Update() goes in a script attached to the object you want to rotate.

avatar image Oninji · Dec 08, 2011 at 10:14 PM 0
Share

Work, I only need to translate it to JS and I'm set. Thanks.

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.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How to make camera position relative to a specific target. 1 Answer

Smoothly increase rotation speed ? 1 Answer

Make the character face the direction he is moving? 2 Answers

Unity Animation Import very slow 4 Answers

haw to fix the roteid ground for the chareter ? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges