SSLR/SSLR/Assets/Scripts/NPCSpawn.cs

36 lines
738 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NPCSpawn : MonoBehaviour
{
[SerializeField] private float npcBufferTime;
public bool npcSpawned = false;
/*[SerializeField]
List<GameObject> NPCs = new List<GameObject>();*/
[SerializeField]
GameObject npc;
void Update()
{
if (!npcSpawned)
{
StartCoroutine(SpawnNPCAfterWait());
}
}
void SpawnNPC()
{
StopAllCoroutines();
Instantiate(npc, transform.position, Quaternion.identity);
npcSpawned = true;
}
IEnumerator SpawnNPCAfterWait()
{
yield return new WaitForSeconds(npcBufferTime);
SpawnNPC();
}
}