-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCutMeshController.cs
108 lines (101 loc) · 3.01 KB
/
CutMeshController.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AI;
using UnityEngine.UI;
using Valve.VR;
public class CutMeshController : MonoBehaviour
{
#region default Variables
SteamVR_Controller.Device device;
SteamVR_TrackedObject trackedObject;
public bool pickedUp;
#endregion
#region public Variables
public static CutMeshController instance;
public Transform _body;
#endregion
#region private Variables
#endregion
#region public Methods
//constructor method
public CutMeshController()
{
instance = this;
}
public void Cut(GameObject target)
{
//var sliceable = target.GetComponent<GameObject>();
//if(sliceable == null)
//{
//return;
//}
//Plane plane = new Plane(Vector3.right, 0f);
}
public void Start()
{
try
{
trackedObject = GetComponentInParent<SteamVR_TrackedObject>();
device = SteamVR_Controller.Input((int)trackedObject.index);
}
catch(System.Exception e) {
Debug.Log("can not cutMeshController class now please wait "+e.Message+" ...!!!");
}
finally
{
//none
}
}
public void OnTriggerStay(Collider col)
{
Get_Katana(col);
if(Get_Katana(col) == true)
{
Move_Down_Katana();
}
}
#endregion
#region private Methods
private bool Get_Katana(Collider col)
{
bool flag = false;
if (col.CompareTag("pickup") && device.GetPressDown(SteamVR_Controller.ButtonMask.Grip) &&
col.transform.parent == null)
{
col.attachedRigidbody.isKinematic = true;
col.attachedRigidbody.useGravity = false;
col.transform.parent = this.transform;
pickedUp = true;
flag = true;
return flag;
}
if (device.GetPressUp(SteamVR_Controller.ButtonMask.Grip) && col.transform.parent != null)
{
col.attachedRigidbody.isKinematic = false;
col.attachedRigidbody.useGravity = true;
col.attachedRigidbody.velocity = device.velocity;
col.attachedRigidbody.angularVelocity = device.angularVelocity;
col.transform.parent = null;
pickedUp = false;
flag = true;
return flag;
}
else return flag;
}
private void Move_Down_Katana()
{
if (device.GetTouchDown(SteamVR_Controller.ButtonMask.Trigger) == true)
{
Debug.Log("Trigger touch down...!!!");
//Create method...
}
if (device.GetPressDown(SteamVR_Controller.ButtonMask.Touchpad) && device.GetAxis(Valve.VR.EVRButtonId
.k_EButton_Axis0).y < -0.8f)
{
Debug.Log("Dpad Down...!!!");
//Create method...
}
}
#endregion
}