Newer
Older
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class WorldCursor : MonoBehaviour
{
private RaycastHit Hit;
private Camera Cam;
void Start()
{
Cam = Camera.main;
}
// Update is called once per frame
void Update()
{
Ray ray = Cam.ScreenPointToRay(Input.mousePosition);
int layerMask = 1 << LayerMask.NameToLayer("Player"); //only hit player
layerMask = ~layerMask; //ignore Player
if(Physics.Raycast(ray, out Hit, 30f, layerMask)){
transform.position = Hit.point;
transform.up = Hit.normal;
transform.position += .01f * Hit.normal;
CheckMouseButtons();
}
else
{
transform.position = Cam.transform.position + Cam.transform.forward * 10;
transform.up = -Cam.transform.forward;
}
}
void CheckMouseButtons()
{
//send HitEvent
if (Input.GetMouseButtonDown(0)){
CommunicationEvents.TriggerEvent.Invoke(Hit);
}
}
}