From 6cd3c00b0b1b0a76b690ad0d978ae265de43a371 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Tue, 13 Jun 2023 19:14:40 +0800 Subject: *misc --- .../Assets/Scripts/Phase/GamePhase_Launch.cs | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 WorldlineKeepers/Assets/Scripts/Phase/GamePhase_Launch.cs (limited to 'WorldlineKeepers/Assets/Scripts/Phase/GamePhase_Launch.cs') diff --git a/WorldlineKeepers/Assets/Scripts/Phase/GamePhase_Launch.cs b/WorldlineKeepers/Assets/Scripts/Phase/GamePhase_Launch.cs new file mode 100644 index 0000000..2f5abe0 --- /dev/null +++ b/WorldlineKeepers/Assets/Scripts/Phase/GamePhase_Launch.cs @@ -0,0 +1,39 @@ +using MovementEffects; +using System.Collections; +using System.Collections.Generic; +using System.Data; +using Unity.VisualScripting; +using UnityEngine; +using WK.Data; + +namespace WK +{ + + public class GamePhase_Launch : GamePhaseBase + { + + CoroutineHandle m_CoLoadData; + + public override IEnumerator OnStart() + { + m_CoLoadData = DataManager.Instance.AsyncLoadAll(); + + yield break; + } + + public override IEnumerator OnEnd() + { + yield break; + } + + public override void OnUpdate(float deltaTime) + { + if (!m_CoLoadData.IsRunning) + { + //GotoStage(EGamePhase.Dojo); + } + } + + } + +} -- cgit v1.1-26-g67d0