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 Archonn · Oct 21, 2012 at 11:09 AM · quaternioneuler

Rotating cube with quaternion angles

Ive wrote this code to move and rotate a cube. It moves fine, but the rotation is inconsistent. I can press down twice and it will rotate in different directions. I imagine its something to do with quaternions and euler angles. Can anyone help?

And yeah, rotating a cube has been asked 1000 times, this is even my second time. But most answers are to use physics, and this way seems far easier than learning torque, friction, and how to stop it bouncing when it lands.

 function move()
         {
              if (!moving)
              {
                         if (Input.GetKeyDown("w"))
                         {    
                             targetPos = Vector3(c.transform.position.x,c.transform.position.y,c.transform.position.z + 1);
                             targetRot = angle + (Vector3.right * 90);
                             moving = true;
                         }
                         if (Input.GetKeyDown("s"))
                         {
                             targetPos = Vector3(c.transform.position.x,c.transform.position.y,c.transform.position.z - 1);
                             targetRot = angle + (Vector3.left * 90);
                             moving = true;
                         }
                         if (Input.GetKeyDown("a"))
                         {
                             targetPos = Vector3(c.transform.position.x - 1,c.transform.position.y,c.transform.position.z);
                             targetRot = angle + (Vector3.forward * 90);
                             moving = true;
                         }
                         if (Input.GetKeyDown("d"))
                         {
                             targetPos = Vector3(c.transform.position.x + 1,c.transform.position.y,c.transform.position.z);
                             targetRot = angle + (Vector3.back * 90);
                             moving = true;
                         }
                     }
                 }
     function movement()
             {
                 var equalA = 100;
                 var portionP : float;
                 var portionR : float;
                 var anglex : float;
                 var angley : float;
                 var anglez : float;
                 if (moving)
                 {
                     portionP = 1 * .01;
                     portionR = 90 * .01;
                     
                     anglex = Mathf.MoveTowardsAngle(angle.x, targetRot.x, portionR * equalA * Time.deltaTime);
                     angley = Mathf.MoveTowardsAngle(angle.y, targetRot.y, portionR * equalA * Time.deltaTime);
                     anglez = Mathf.MoveTowardsAngle(angle.z, targetRot.z, portionR * equalA * Time.deltaTime);
                     
                     angle = Vector3(anglex,angley,anglez);
                     c.transform.eulerAngles.x = angle.x;
                     c.transform.eulerAngles.y = angle.y;
                     c.transform.eulerAngles.z = angle.z;
                     
                     c.transform.position = Vector3.MoveTowards(c.transform.position, targetPos, portionP * equalA * Time.deltaTime);
                 
                     if (c.transform.position == targetPos)// && c.transform.eulerAngles == Vector3(anglex,angley,anglez))
                     {
                         moving = false;
                     }
                 }
             }
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 AlucardJay · Oct 21, 2012 at 02:22 PM 0
Share

http://unitygems.com/quaternions-rotations-part-1-c/

avatar image Fattie · Oct 21, 2012 at 03:01 PM 0
Share

go to unityGE$$anonymous$$S.com and read the utterly complete and full explanations there

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

11 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

Related Questions

Gun not rotating with the camera? 1 Answer

Quaternion snaps to a rotation when moving (and with input)? 1 Answer

Eulers from normal into rotation sometimes wrong. 3 Answers

Quaternion LookRotation issue 0 Answers

Weird rotation behaviour 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