Unity - Scripting API: HandleUtility.DistanceToCube
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Declaration
public static float DistanceToCube(Vector3 position, Quaternion rotation, float size);
Parameters
| Parameter | Description |
|---|---|
| position | Position of the cube. |
| rotation | Rotation of the cube. |
| size | Size of the cube. |
Returns
float Distance from mouse to cube in pixels.
Description
Returns the distance in pixels from the mouse pointer to a cube.
Calculates the screen space distance from the mouse pointer to a cube at given world
space position with the given rotation and size.
Returns zero when mouse pointer is directly over the cube.
Uses the current camera to determine the distance.