From 588fbac8e40fd9226988f40e69264f01518098c5 Mon Sep 17 00:00:00 2001 From: Sara Date: Fri, 22 Mar 2024 15:33:16 +0100 Subject: [PATCH] chore: removed debug logging --- src/state_machine.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/state_machine.cpp b/src/state_machine.cpp index 15e9d89..647ad40 100644 --- a/src/state_machine.cpp +++ b/src/state_machine.cpp @@ -22,7 +22,6 @@ void StateMachine::_exit_tree() { GDGAMEONLY(); } void StateMachine::_process(double delta_time) { GDGAMEONLY(); - UtilityFunctions::print(this->get_path(), " _process"); if(this->state) this->override_state(this->state->get_next()); }