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

31 lines
588 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
{
2025-03-05 10:55:14 +01:00
public override PlayerState StateId => PlayerState.UnTeleporting
;
2025-03-02 11:58:30 +01:00
[Export]
private PlayerAnimationProvider _animationProvider;
public override void EnterState()
{
_animationProvider.PlayUnteleportAnimation();
}
public override void ExitState()
{
}
public override void ProcessState(double delta)
{
}
public override void PhysicsProcessState(double delta)
{
}
}