cirnogodot/Scripts/Components/FSM/Player/UnTeleporting.cs

30 lines
653 B
C#
Raw Normal View History

2025-03-02 11:58:30 +01:00
using Godot;
namespace Cirno.Scripts.Components.FSM.Player;
2025-03-05 10:55:14 +01:00
public partial class UnTeleporting : PlayerStateBase
2025-03-02 11:58:30 +01:00
{
public override PlayerState StateId => PlayerState.UnTeleporting;
2025-03-02 11:58:30 +01:00
private PlayerAnimationProvider _animationProvider;
public override void EnterState()
{
_animationProvider ??= StateMachine.GetModule<PlayerAnimationProvider>();
_animationProvider?.PlayUnteleportAnimation();
2025-03-02 11:58:30 +01:00
}
public override void ExitState()
{
}
public override void ProcessState(double delta)
{
}
public override void PhysicsProcessState(double delta)
{
}
}