2026-05-29 로딩기능

This commit is contained in:
2026-05-29 12:25:32 +09:00
parent 7ad70e7997
commit 3190f10d7d
19 changed files with 167 additions and 29 deletions

View File

@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Threading;
using TMPro;
using UnityEditor.Playables;
using UnityEngine;
using UnityEngine.UI;
@@ -74,7 +72,11 @@ public class WaveManager : MonoBehaviour
private void Start()
{
OnAllWavesCleared += StageClearEvent;
if (_startOnAwake) StartWaves();
if (_startOnAwake)
{
_ = Util.RunDelayed(1f,StartWaves,destroyCancellationToken);
}
}
private void OnDestroy()