• 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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



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

Finding the Current Vector of Travel 1 Answer

Calculate the distance between an object and my player 1 Answer

Rotational Force 0 Answers

Help with distance between multiple objects 3 Answers

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

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges