コード例 #1
0
ファイル: GoblinRanger.cs プロジェクト: gusdn6763/Zombie_VR
 /// <summary>
 /// 애니메이션
 /// </summary>
 public void ShootArrow()
 {
     if (currentArrow != null)
     {
         currentArrow.ArrowShoot(damage);
         currentArrow = null;
     }
 }