chore: removed debug logging

This commit is contained in:
Sara 2024-03-22 15:33:16 +01:00
parent 47bfbeb26c
commit 588fbac8e4

View file

@ -22,7 +22,6 @@ void StateMachine::_exit_tree() { GDGAMEONLY();
} }
void StateMachine::_process(double delta_time) { GDGAMEONLY(); void StateMachine::_process(double delta_time) { GDGAMEONLY();
UtilityFunctions::print(this->get_path(), " _process");
if(this->state) if(this->state)
this->override_state(this->state->get_next()); this->override_state(this->state->get_next());
} }