mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:55:35 +00:00
31 lines
No EOL
550 B
C#
31 lines
No EOL
550 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.FSM.Player;
|
|
|
|
public partial class Teleporting : PlayerStateBase
|
|
{
|
|
public override PlayerState StateId => PlayerState.Teleporting;
|
|
|
|
[Export]
|
|
private PlayerAnimationProvider _animationProvider;
|
|
|
|
public override void EnterState()
|
|
{
|
|
_animationProvider.PlayTeleportAnimation();
|
|
}
|
|
|
|
public override void ExitState()
|
|
{
|
|
|
|
}
|
|
|
|
public override void ProcessState(double delta)
|
|
{
|
|
|
|
}
|
|
|
|
public override void PhysicsProcessState(double delta)
|
|
{
|
|
|
|
}
|
|
} |