유니티 오브젝트 자동 spawn하는 방법
유니티 오브젝트 자동 스폰 방법 오브젝트가 중력이 적용되어 지면에 닿으면 튀게 하는 효과 : 마우스 왼쪽 클릭 - Physical Material - bounciness(1) using System.Collections; using System.Collections.Generic; using UnityEngine; public class Spawner : MonoBehaviour { public GameObject BallPrefab; public float minDelay = 0.1f; public float maxDelay = 1f; public float DestroyDelay = 5f; private IEnumerator coroutine; void Start() { coroutine = Spaw..