예제 #1
0
 public void MeleeAttackStart(int throwing = 0)
 {
     if (meleeWeapon != null)
     {
         meleeWeapon.BeginAttack(throwing != 0);
     }
     m_InAttack = true;
 }
예제 #2
0
 public void BeginAttack()
 {
     weapon.BeginAttack();
 }
예제 #3
0
 public void BeginAttack()
 {
     isAttacking = true;
     weapon.BeginAttack();
 }