Unity project: Creating a State Machine

4 months ago
53

Typically, to build a state machine using interfaces, you'll need a State Controller script, that holds a reference to the Current State, which can be any state that implements the IState Interface, which is what will be used to define the common functions that each state will need to include.

Loading comments...