您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
29 行
790 B
29 行
790 B
using UnityEngine;
|
|
using UOP1.StateMachine;
|
|
using UOP1.StateMachine.ScriptableObjects;
|
|
|
|
[CreateAssetMenu(fileName = "ControlWalkingParticlesAction", menuName = "State Machines/Actions/Control Walking Particles")]
|
|
public class ControlWalkingParticlesActionSO : StateActionSO<ControlWalkingParticlesAction> { }
|
|
|
|
public class ControlWalkingParticlesAction : StateAction
|
|
{
|
|
//Component references
|
|
private PlayerEffectController _dustController;
|
|
|
|
public override void Awake(StateMachine stateMachine)
|
|
{
|
|
_dustController = stateMachine.GetComponent<PlayerEffectController>();
|
|
}
|
|
|
|
public override void OnStateEnter()
|
|
{
|
|
_dustController.EnableWalkParticles();
|
|
}
|
|
|
|
public override void OnStateExit()
|
|
{
|
|
_dustController.DisableWalkParticles();
|
|
}
|
|
|
|
public override void OnUpdate() { }
|
|
}
|