You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stateless is (almost) entirely stateless, so it does not now when it's being configured, and when it's 'running'.
Because of this the initial transition of the 'starting' state is never executed.
You can circumvent this by putting the initial transition action in the OnActive handler, and call Activate when the state machine is fully configured and ready for action.
Another way is to add another state, and transition into the 'first' state, in your case HomePosition.
Hello,
i have the following fsm :
`enum State
{
HomePosition,
InPosition_1,
InPosition_2,
InPosition_3,
InPosition_4,
}
the machine config is as follow :
`_fsm = new StateMachine<State, Trigger>(State.HomePosition);
when i fire the fsm automatically, 1 --> 2 --> 3 --> 4 , it always start from Position 2, ignoring the first one ? why is this behavior ?
hier is the dotgraph
Thanks for the help
The text was updated successfully, but these errors were encountered: