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 ITIProd · Feb 25, 2017 at 08:17 AM · rotationquaternioneulerangles

Finding the Euler Direction of Quaternion Rotations...

In a game involving aircraft, I have a Player GameObject with a child Aircraft GameObject. The Player object is rotated via Quaternion.FromToRotation towards a target direction. What I would like is the Aircraft child object to rotate so that "Up" vector of it's Transform is along the path of the Player's rotation (the effect would be the "aircraft" would bank in the direction of the overall rotation)

My issue is finding the relationship between the local space direction of rotation and the aircraft's local Euler angles. I've tried finding the Quaternion.eulerAngles of the new direction, adding that to the transform.position, and then finding the Transform,InverseTransformDirection of the target point. From that, I should be able to use the Mathf.Atan2 of the x and y components of the result to get an angle of rotation.

 Quaternion presentDirection =  player.transform.rotation;
 Quaternion desiredDirection = FacingNeeded() // This function gives me the rotation needed for the player object.

 Quaternion newRotation = Quaternion.FromToRotation(presentDirection, desiredDirection, maxTurnSpeed*Time.deltaTime);
 
 Vector3 turnPathVector = desiredDirection.eulerAngles;
 Vector3 relationshipVector = player.transform.InverseTransformDirection(player.transform.position + turnPathVector*100.0f);

 relationshipVector = relationshipVector.normalized;
 float spinAngle = Mathf.Atan2(relationshipVector.y, relationshipVector.x) * Mathf.Rad2Deg;
 
 player.transform.rotation = newRotation;
 aircraft.transform.localEulerAngles = new Vector3(0,0,spinAngle);

Unfortunately, this doesn't seem to give me the result I want. In fact, I'm pretty sure I'm doing this the hard way. If I have a Quaternion rotation from QuatA to QuatB, How would I find the rotation around local z-axis of my child object that would make its "up" vector point along the path of that rotation?

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 AMU4u · Feb 25, 2017 at 05:12 PM 0
Share

Ok I read that a couple times (lol) but if my brain is wrapping around it, wouldn't it be supremely easy just to raycast out from your player object the distance, then on your aircraft child object have it lookat() that hit.point you created from the 3d camera/player object?

avatar image ITIProd AMU4u · Feb 26, 2017 at 02:37 PM 0
Share

$$anonymous$$aybe I didn't make the question clear enough. Let's say I want the player object to rotate around the y-axis. I would want the aircraft object to have it's "up" vector point along the x-axis, because the path of rotation around the y-axis sweeps along the x-axis. I need to know how to deter$$anonymous$$e, from the aircraft's point of view, what direction to bank so that the "up" vector sweeps along the path of rotation.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

My Obstacle Rotations Are Not Correct 0 Answers

Code to rotate around a local axis until local Y is 0? 0 Answers

Rotation problem while dynamically changing animations 2 Answers

Quaternion distorts my object 1 Answer

Rotating a model with increments 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