Fix: Remove the 5s cooldown of the spawner #4

Merged
UnEpicier merged 1 commits from 3-remove-5s-cooldown-before-enemies-spawn into main 2023-10-24 08:27:25 +02:00
Showing only changes of commit 0b537046b8 - Show all commits
+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()