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 LeeCarry · Oct 14, 2018 at 09:17 AM · transformvector3lookatalgorithmright

What is the algorithm to assign to transform.right?

https://answers.unity.com/questions/585035/lookat-2d-equivalent-.html

I saw this code when I was looking for lookat2D problem.

             transform.right = firstEnemy.transform.position - transform.position;
             //Debug.Log("1:" + (firstEnemy.transform.position - transform.position));
             //Debug.Log("2:"+transform.right);

This line of code is useful, but I don't know his algorithm. why transofrm.right is Vector3?The Debug.log output is also inconsistent. Can someone explain to me the principle of assigning it or the principle of this algorithm?

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
1
Best Answer

Answer by eses · Oct 14, 2018 at 02:01 PM

Hi @LeeCarry

"This line of code is useful, but I don't know his algorithm. why transofrm.right is Vector3?"

Transform itself is a class, and rotation is Quaternion value. Transform.right is a shortcut, you can use it to get or alter your transform's rotation using direction vector. There's also transform.up and transform.forward, these all take a Vector3, and it in turn is used to change transform's rotation:

 Debug.Log("My rotation: " + transform.rotation);
 // My rotation: (0.0, 0.0, 0.0, 1.0)
 
 // Vector along z-axis
 var direction = new Vector3(0,0,1f);
 transform.right = direction;
 
 Debug.Log("My rotation: " + transform.rotation);
 // My rotation: (0.0, -0.7, 0.0, 0.7)


Minus operation is just a way to get a vector pointing towards some other object. If you have object A and B, you can substract your transform's position from other's position. You'll end up with vector pointing to direction of other object, which you can use to rotate your object by for example setting it's transform.forward, similar manner to transform.right:

 // Direction vector towards other object (relative to this transform):
 var directionTo = (other.transform.position - transform.position).normalized;
 
 // align forward axis to direction:
 transform.forward = directionTo;


See documentation for more info:
https://docs.unity3d.com/ScriptReference/Transform-right.html

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 LeeCarry · Oct 17, 2018 at 06:55 AM 1
Share

oh my god,$$anonymous$$y brain is not quite clear lately.This is vector normalization to get direction.The original code omitted “normalized”, so I didn't think of it. may bad, i'm foolish.I really want to delete the question,let it go at that,Leave it to those who need it. XD

Finally, thank you very much for taking the time to answer questions. :)

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

134 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 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 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

Change a Transform to Aim to the center of a Collider. Not (0,0,0) 2 Answers

How to use x axis for transform.LookAt 3 Answers

Rigidbody to follow player around 1 Answer

transform.LookAt boundaries 1 Answer

How to prevent Z axis rotation ? 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