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 cjung89 · Feb 07, 2013 at 04:17 AM · rotationmovementquaternionangle

Quaternion.FromToRotation misunderstanding

I am trying to make an f-zero type game where my ship stays parallel to the ground. I would expect the following code to align the ships up vector to the normal projecting from the surface (I am casting a ray straight down from the ship). Judging from the Debug log though, this isn't happening. Anyone know how I can get the desired result?

Quaternion rot = Quaternion.FromToRotation(transform.up, hit.normal);

 Debug.Log("myup " + transform.up + " hitnormal " + hit.normal ); 
 transform.rotation = Quaternion.RotateTowards(transform.rotation, rot, Time.deltaTime*10);
Comment
Add comment · Show 1
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 Fattie · Feb 07, 2013 at 08:46 AM 0
Share

unityGE$$anonymous$$S.com for very good articles on Quaternions

2 Replies

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

Answer by Owen-Reynolds · Feb 07, 2013 at 04:38 PM

FromToRotation is the difference between two rotations. So, you would gradually add it to your current rotation. Your code just changes to it.

For example, simplifying, suppose your Up is 90 degrees and hit.normal is only 80 degrees. FromTo gives you 10. You don't want to be 10, you want to add 10.

Can compute 1 frame worth of rot and add that [tested]:

 rot = Quaternion.RotateTowards(Quaternion.identity, rot, Time.deltaTime*10);
 transform.rotation = rot * transform.rotation;

NOTE: multiplying Quats is different in either order. The 2nd (I think) uses the local axis of the 1st. So "add rot to your rotation" isn't as easy as it sounds. Sometimes can just trial&error the order. Sort of makes sense rot is 1st, since it was in world coords.

Comment
Add comment · 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
1

Answer by andrew-lukasik · Jan 22, 2016 at 04:00 PM

(Z+ is forward) Solution:

 Quaternion NEW_ROTATION = Quaternion.LookRotation(
     Vector3.ProjectOnPlane( LOOK_AT_DIRECTION , SURFACE_NORMAL) ,
     SURFACE_NORMAL
 );
 transform.rotation = NEW_ROTATION;
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 stephencoorey · May 26, 2018 at 04:37 PM 0
Share

this fixed my problem of the gameobject i tried to align with a wall showing different up rotations depending which angle the camera looked at it from. 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

12 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

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Bone Rotation on X (or any) axis Issues 1 Answer

Quaternion and rotation angles 2 Answers

Basic quaternion question 1 Answer

How can I multiply the rotation of a mirrored object? 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