You've already forked taptap2024_GJ_chidouren
33 lines
898 B
C#
33 lines
898 B
C#
using System;
|
|
using System.Guide;
|
|
using Framework.Audio;
|
|
using Framework.FSMLite;
|
|
using Framework.UI;
|
|
using Game.Data;
|
|
|
|
using UnityEngine;
|
|
using Views;
|
|
|
|
namespace Game.FsmNode
|
|
{
|
|
public class GameFight : StateMachine<GameState>
|
|
{
|
|
// 基础战斗引导
|
|
// ReSharper disable once MemberCanBePrivate.Global
|
|
public const string FightGuideTable = "FightGuide";
|
|
// ReSharper disable once MemberCanBePrivate.Global
|
|
public const string GodEyeGuideTable = "GodEyeGuide";
|
|
|
|
public static string GroupName = typeof(GameFight).FullName;
|
|
protected override async void OnEnter (params object[] args)
|
|
{
|
|
AudioManager.Instance.PlayBGM (BgmAudio.FightingBgm);
|
|
var globalData = RoomManager.Instance.RoomGlobalData;
|
|
}
|
|
|
|
protected override void OnExit ()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |