Remove new object in spawnScript

This commit is contained in:
Kotrba Filip 2020-02-02 08:36:26 +01:00
parent 042800be1f
commit 63f230f45b
2 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ public class SpawnManager : MonoBehaviour
public List<GameObject> enemyList = new List<GameObject>(); public List<GameObject> enemyList = new List<GameObject>();
public List<Transform> spawnPoints = new List<Transform>(); public List<Transform> spawnPoints = new List<Transform>();
public int enemyStartNumber = 5; public int enemyStartNumber = 5;
public GameObject Sun = new GameObject(); public GameObject Sun;
bool night = false; bool night = false;