Ejemplo n.º 1
0
 public void StartGrasp()
 {
     if (hand.isTracked)
     {
         //// Debug.Log("GrabStart");
         isGrasp = true;
         OnGraspChanged?.Invoke(true);
     }
 }
Ejemplo n.º 2
0
 public void EndGrasp()
 {
     //// Debug.Log("GrabEnd");
     isGrasp = false;
     OnGraspChanged?.Invoke(false);
 }