아이템 편 마지막! https://youtu.be/esGkgvm9eSg 수류탄 먹고, 캐릭터 주변 공전 시키기. 아래와 같이 아이템 변수를 추가. public GameObject[] grenades; public int hasGrenades; public int ammo; public int coin; public int health; public int maxAmmo; public int maxCoin; public int maxHealth; public int maxHasGrenades; 아이템 충돌시(OnTriggerEnter), 각 아이템 별 변수에 저장 처리. private void OnTriggerEnter(Collider other) { if (other.tag == "Item") { Ite..