pigdevstudio / platform_template

Template project for platform games in Godot Engine.
MIT License
72 stars 12 forks source link

Restructure FSM #7

Closed henriiquecampos closed 6 years ago

henriiquecampos commented 6 years ago

Restructure Finite State Machine by making a self contained state machine Node.

Finite State Machine

It is in this node that we will handle state transitions. state_transitions

Enter State

When the character enters a state, that's what shall happen enter_state

henriiquecampos commented 6 years ago

The behavior of the character in each state goes as follows

WALK

walk

JUMP

= jump

henriiquecampos commented 6 years ago

Implemented on #8