Fix: Remove the 5s cooldown of the spawner

This commit is contained in:
2023-10-24 08:26:29 +02:00
parent 9440ea28ff
commit 0b537046b8
+1 -1
View File
@@ -25,7 +25,7 @@ public class Spawner : MonoBehaviour
private void Start() private void Start()
{ {
InvokeRepeating(nameof(SpawnWave), 5f, 5f); InvokeRepeating(nameof(SpawnWave), 0f, 5f);
} }
private void OnDrawGizmos() private void OnDrawGizmos()