-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectObject.cs
35 lines (31 loc) · 988 Bytes
/
SelectObject.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using UnityEngine;
public class SelectObject : MonoBehaviour
{
void Update()
{
// Call every frame
MouseInput();
}
void MouseInput()
{
// When Mouse 0 is pressed
if (Input.GetMouseButton(0))
{
// Set if the Physics.Raycast returns true
RaycastHit hitInfo;
// Setup ray based on mouse input position
Ray rayFromMouseInput = Camera.main.ScreenPointToRay(Input.mousePosition);
// Populates hitInfo if returns true
if (Physics.Raycast(rayFromMouseInput, out hitInfo))
{
// Log the name of the hit object
Debug.Log(hitInfo.collider.gameObject.name);
Debug.DrawRay(
rayFromMouseInput.origin,
rayFromMouseInput.direction * 1000.0f,
Color.yellow
); // Default ray length to 1000 for debug
}
}
}
}