mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
FSM
This commit is contained in:
parent
51ceb4ee3c
commit
054db28c77
5 changed files with 57 additions and 36 deletions
22
Scripts/Components/FSM/PlayerFSMState.cs
Normal file
22
Scripts/Components/FSM/PlayerFSMState.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Components.FSM;
|
||||
|
||||
public abstract partial class PlayerFSMState : State
|
||||
{
|
||||
[Export]
|
||||
public PlayerState State { get; private set; }
|
||||
public override int StateId => (int)State;
|
||||
|
||||
protected void ChangeState(PlayerState newState)
|
||||
{
|
||||
_stateMachine.SetState((int)newState);
|
||||
}
|
||||
}
|
||||
|
||||
public enum PlayerState
|
||||
{
|
||||
Idle,
|
||||
Walking,
|
||||
Cutscene
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue