Closed bloodhoundmichael closed 1 year ago
The constructor is the following:
State::State(String name, CallbackFunction on_enter, CallbackFunction on_state, CallbackFunction on_exit, bool is_final /* = false */) { setup(name, on_enter, on_state, on_exit); }
You can see that is_final is not passed on to setup.
is_final
setup
Thanks!
The constructor is the following:
You can see that
is_final
is not passed on tosetup
.