コード例 #1
0
ファイル: Weapon.cs プロジェクト: IND333D/Zombie-Runner
    IEnumerator Shoot()
    {
        canshoot = false;
        if (ammocount.CurrentAmmo() > 0)
        {
            PlayMuzzleFlash();
            ProcessRaycast();
            ammocount.ReduceAmmo();
        }
        yield return(new WaitForSeconds(timeBetweenShots));

        canshoot = true;
    }