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 Rybo5000 · May 24, 2013 at 10:38 AM · gameobjectvector3mathdistancevector

Finding Nearest Object Both Positive And Negative?

Hi,

I'm trying to find the closest point to where the mouse is clicked (topArrow, bottomArrow etc are Vector3 points on screen).

The problem is no matter where I click, it either says rightArrow or topArrow are closest; this is because they are both in the positive direction.

How can I fix this to return the actual closest?

 Vector3 topArrow = new Vector3(0,12,0);
 Vector3 bottomArrow = new Vector3(0,-12,0);
 Vector3 leftArrow = new Vector3(-30,0,0);
 Vector3 rightArrow = new Vector3(30,0,0);

 Vector3 getNearestArrow()
     {
         Vector3 closestPos = new Vector3(0,0,0);
         float closestDistance = Mathf.Infinity;
         
         if(Vector3.Distance (topArrow,Input.mousePosition) < closestDistance)
         {
             closestDistance = Vector3.Distance (topArrow,Input.mousePosition);
             closestPos = topArrow;
         }
         
         if(Vector3.Distance (bottomArrow,Input.mousePosition) < closestDistance)
         {
             closestDistance = Vector3.Distance (bottomArrow,Input.mousePosition);
             closestPos = bottomArrow;
         }
         
         if(Vector3.Distance (leftArrow,Input.mousePosition) < closestDistance)
         {
             closestDistance = Vector3.Distance (leftArrow,Input.mousePosition);
             closestPos = leftArrow;
         }
         
         if(Vector3.Distance (rightArrow,Input.mousePosition) < closestDistance)
         {
             closestDistance = Vector3.Distance (rightArrow,Input.mousePosition);
             closestPos = rightArrow;
         }
                             
         return closestPos;
     }
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 robertbu · May 24, 2013 at 12:47 PM

Vector3.Distance is unsigned, so you problem is not an issue with "positive direction." You issues is that Input.mousePosition is in screen coordinates. Screen coordinates go from (0,0) in the lower left of your game to (Screen.width, Screen.height) in the upper right. In order to do the calculation you need to convert your mouse position into a world coordinates.

World coordinates are in 3D space, so to make the conversion, you have have to decide about how far in front of the camera you want the point. I'm going to assume your camera is looking down the 'Z' axis, and since all of your arrow Vector3 values have a 'z' coordinate of '0', you want the point at the origin:

 Vector3 v3Pos = new Vector3(Input.mousePosition.x, Input.mousePosition.y, Mathf.Abs(Camera.main.transform.position.z));
 v3Pos = Camera.main.ScreenToWorldPoint(v3Pos);

After the this conversion, you can use v3Pos in place of your Input.mousePosition in all of your Vector3.Distance() calls.

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 Rybo5000 · May 26, 2013 at 09:22 AM 0
Share

Perfect, I should've realised that! Thank you!

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

13 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

Related Questions

How can I calculate the Vector3 b using Vector 3 a pos with an angle? 1 Answer

Rotational Force 0 Answers

Angle between 2 GameObjects and center of screen 2 Answers

How to get a vector3 (postion) 1 unit away from another in the direction of a 3rd vector3? 2 Answers

Given a vector, how do i generate a random perpendicular vector? 5 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