Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 imp903 · Dec 09, 2015 at 08:41 PM · c#animationrotationanimatorclamped rotation

Clamping look rotation 3d?

So, I'm making a third person game right now, and when the character is standing still he is supposed to rotate with the mouse. There is a vector in front of him that is for reference then a desired look vector that moves proportional to the mouse's x value. then the angle between these two is gotten and that value is passed into a blend tree to play the animation at the appropriate speed. The issue is that this desired look direction vector can just go in a circle, so that if the player keeps turning the mouse, the desired look direction goes past halfway and registers as turning the opposite of the intended way, because I'm not sure how to clamp the angle that the desired look vector will rotate to. I tried clamping the mouseX value and that didn't seem to help, and I'm not sure what other places I can place the clamp. Thanks in advance, and hopefully you can kind of visualize what I mean. Here's the code:

     private Animator playerAnim;
     public Vector3 refDir;
     public Vector3 lookDir;
     public Vector3 turnDir;
     public float turnAngle;
     public int lookSens;
     public float yRotation;
     public float offsetAngle;
 
     void Start()
     {
         playerAnim = GetComponent<Animator>();
         lookDir = new Vector3(0.0f, 0.0f, 1.0f);
     }
 
     void Update()
     {
         //handles look direction in relation to the reference direction to get an angle offset to be passed into the animation for idle rotation
         float mouseX = Input.GetAxis("Mouse X") * Time.deltaTime * lookSens;
         refDir = transform.forward;
         turnDir = transform.right;
         lookDir = Quaternion.Euler(0.0f, mouseX, 0.0f) * lookDir;
         offsetAngle = Vector3.Angle(refDir, lookDir);
         turnAngle = Vector3.Angle(turnDir, lookDir);
         if (turnAngle > 90)
         {
             offsetAngle *= -1;
         }
         else if (turnAngle < 90)
         {
     
         }
         playerAnim.SetFloat("HorAimAngle", offsetAngle);
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

0 Replies

· Add your reply
  • Sort: 

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

50 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Flip over an object (smooth transition) 3 Answers

How to make a transition animation, intermediate animation between two main states 0 Answers

Unity 5 Broken Animations? 3 Answers

Efficient way to instantiate a sprite that plays an animation then destroys itself? (3d space) 1 Answer

UI Text Alpha not fading out in animation 0 Answers


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