mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-21 16:00:32 +00:00
27 lines
512 B
C#
27 lines
512 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UniFramework.Machine;
|
|
|
|
/// <summary>
|
|
/// 流程更新完毕
|
|
/// </summary>
|
|
internal class FsmUpdaterDone : IStateNode
|
|
{
|
|
private PatchOperation _owner;
|
|
|
|
void IStateNode.OnCreate(StateMachine machine)
|
|
{
|
|
_owner = machine.Owner as PatchOperation;
|
|
}
|
|
void IStateNode.OnEnter()
|
|
{
|
|
_owner.SetFinish();
|
|
}
|
|
void IStateNode.OnUpdate()
|
|
{
|
|
}
|
|
void IStateNode.OnExit()
|
|
{
|
|
}
|
|
} |