Fix process_input is not enabled in active substate

This commit is contained in:
Serhii Snitsaruk 2024-07-31 12:15:15 +02:00
parent 6aa4e63929
commit a1d6276097
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 2 additions and 0 deletions

View File

@ -52,11 +52,13 @@ void LimboHSM::change_active_state(LimboState *p_state) {
if (active_state) {
active_state->_exit();
active_state->set_process_input(false);
previous_active = active_state;
}
active_state = p_state;
active_state->_enter();
active_state->set_process_input(true);
emit_signal(LimboStringNames::get_singleton()->active_state_changed, active_state, previous_active);
}