增加boss 出场cg

This commit is contained in:
2024-10-26 01:38:30 +08:00
parent 524c3afbc6
commit b86887ce09
85 changed files with 75380 additions and 227 deletions

View File

@@ -6,6 +6,7 @@ using Game.Component;
using UnityEngine;
using UnityEngine.UI;
using IcecreamView;
using MintAnimation.Runtime.Components.MintAnimation;
using Script.Core.Utils.Extend;
using StateSystem;
using UnityEngine.Playables;
@@ -14,9 +15,10 @@ namespace Views{
public class HomePanel : IcecreamView.IC_AbstractModule
{
public Button _toGame;
public Button _settingGame;
public Button _aboutGame;
public Button _toGame;
public Button _settingGame;
public Button _aboutGame;
public MintAnimBase _MintAnim;
private PlayableDirector _playableDirector;
@@ -70,6 +72,9 @@ namespace Views{
this._toGame.gameObject.SetActive(false);
this._aboutGame.gameObject.SetActive(false);
this._settingGame.gameObject.SetActive(false);
var mintPlayerBase = this._MintAnim.MintAnimation ();
mintPlayerBase.TweenOptions.IsFlip = true;
this._MintAnim.StartAnim();
this._playableDirector.stopped += ToGaming;
this._playableDirector.initialTime = 0;
this._playableDirector.Play ();