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 porl · Aug 11, 2013 at 02:52 PM · rotationquaternionaxisrotate objectlocal axis

Smooth rotation about global axis instead of local axis.

I am trying to rotate a game object 90 degrees about the global axis but can only seem to make it rotate about it's local axis.

I am calculating rotation like this and then slerping it after:

 if (direction == directions.right)
         {
             newRotation = transform.rotation * Quaternion.Euler(0,-90,0);
         }
         else if (direction == directions.left)
         {
             newRotation = transform.rotation * Quaternion.Euler(0, 90, 0);
         }
         else if (direction == directions.up)
         {
             newRotation = transform.rotation * Quaternion.Euler(90, 0, 0);
         }
         else if (direction == directions.down)
         {
             newRotation = transform.rotation * Quaternion.Euler(-90, 0, 0);
         }

Cheers!

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

1 Reply

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

Answer by robertbu · Aug 12, 2013 at 06:16 AM

To rotation about the global axis, reverse the order the Quaternions are combined:

 if (direction == directions.right)
 {
     newRotation = Quaternion.Euler(0,-90,0) * transform.rotation;
 }
 else if (direction == directions.left)
 {
     newRotation = Quaternion.Euler(0, 90, 0) * transform.rotation;
 }
 else if (direction == directions.up)
 {
     newRotation = Quaternion.Euler(90, 0, 0) * transform.rotation;
 }
 else if (direction == directions.down)
 {
     newRotation = Quaternion.Euler(-90, 0, 0) * transform.rotation;
 }
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 porl · Aug 12, 2013 at 06:22 AM 0
Share

Thank-you so much! Can you by any chance explain why it works this way?

avatar image robertbu · Aug 12, 2013 at 02:23 PM 2
Share

Each individual Quaternion rotation is an absolute rotation around world axes. There is no 'local' rotation to the local axes. So find a cube object, label front, top and right. Pick something interesting for a value of newRotation like (45, 45, 0). Start with the cube in a (0,0,0) rotation, then apply the two rotations above. That is first rotate one of the values above such as (0,90,0). Then apply the newRotation on the world axes to your cube. You will see in this order the cube appears to move locally. Bring the cube back to (0,0,0), and reverse the order. Start with with the newRotation then apply the Euler rotation from above. This will appear to be a 'global' rotation.

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

14 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

Related Questions

90 Degree stopping rotation on y-axis issue 0 Answers

"Free" rotation about a sphere 0 Answers

Rotating an object based on the side the player is looking at 2 Answers

Rotating an object in relation to its endpoints 1 Answer

Quaternion.LookRotation only on Y axis 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