[Dodge] #5. 탄알 생성기
2022. 2. 26.
탄알 생성기 생성 Bullet Spawner 게임 오브젝트 생성 하이어 라키 > Create > 3D Object > Cylinder 생성된 오브젝트의 이름을 Bullet Spawner으로 변경 Bullet Spawner 게임 오브젝트의 위치를 (8,1,0)으로 변경 Bullet Spawner에 Bullet Color의 메테리얼을 드레그&드롭 Bullet Spawner 스크립트 생성 Bullet Spawner의 변수 선언 using System.Collections; using System.Collections.Generic; using UnityEngine; public class BulletSpawner : MonoBehaviour { public GameObject Bulletprefab; publ..