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
0, 1, and 2 are states with only one output path.
3 however, is a state with at least two output paths this could be explained as an if condition on the state. ex:
state3:
if (condition) {
goto(state4);
}
else {
goto(state5);
}
Add a
StateMachine
that keeps track of an array ofState
s and how each is connected to one another.The text was updated successfully, but these errors were encountered: