mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
15 lines
449 B
C#
15 lines
449 B
C#
namespace TEngine.Runtime
|
|
{
|
|
/// <summary>
|
|
/// 流程加载器 - 开始起点
|
|
/// </summary>
|
|
public class ProcedureLaunch : ProcedureBase
|
|
{
|
|
|
|
protected override void OnUpdate(IFsm<IProcedureManager> procedureOwner, float elapseSeconds, float realElapseSeconds)
|
|
{
|
|
base.OnUpdate(procedureOwner, elapseSeconds, realElapseSeconds);
|
|
ChangeState<ProcedureSplash>(procedureOwner);
|
|
}
|
|
}
|
|
} |