Exemple #1
0
 public void CmdFinishHand(int hand)
 {
     try
     {
         Messenger.Broadcast("EndGesture_" + hand);
         if (hand == 0)
         {
             leftHand.FinishHand();
         }
         else
         {
             rightHand.FinishHand();
         }
     }
     catch (System.Exception e)
     {
         Debug.LogException(e);
     }
 }