mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 07:45:33 +00:00
30 lines
No EOL
653 B
C#
30 lines
No EOL
653 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.FSM.Player;
|
|
|
|
public partial class UnTeleporting : PlayerStateBase
|
|
{
|
|
public override PlayerState StateId => PlayerState.UnTeleporting;
|
|
private PlayerAnimationProvider _animationProvider;
|
|
|
|
public override void EnterState()
|
|
{
|
|
_animationProvider ??= StateMachine.GetModule<PlayerAnimationProvider>();
|
|
_animationProvider?.PlayUnteleportAnimation();
|
|
}
|
|
|
|
public override void ExitState()
|
|
{
|
|
|
|
}
|
|
|
|
public override void ProcessState(double delta)
|
|
{
|
|
|
|
}
|
|
|
|
public override void PhysicsProcessState(double delta)
|
|
{
|
|
|
|
}
|
|
} |