update core

This commit is contained in:
2024-10-28 00:40:00 +08:00
parent 991ce10c52
commit 66b8593446
14 changed files with 116 additions and 20 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.StateSystem;
using Cysharp.Threading.Tasks;
using Framework.Audio;
using Framework.UI;
using Game;
@@ -51,11 +52,12 @@ namespace Views
this.table1.gameObject.SetActive (true);
}
private void OnTable4 (PlayableDirector obj)
private async void OnTable4 (PlayableDirector obj)
{
this._animatorStateUpdate.state = 7;
this.table3.gameObject.SetActive (false);
this.table4.gameObject.SetActive (true);
await UniTask.Delay (5000);
this._closeBtn.gameObject.SetActive (true);
}