Example #1
0
 public bool PlayerIsAttacking()
 {
     if (IPL.GetRightControllerVelocity().magnitude >= attackDetectionThreshold)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }