#include "../ComponentManager.h" #include "../api/BehaviorScript.h" #include "../api/Script.h" #include "ScriptSystem.h" using namespace std; using namespace crepe; void ScriptSystem::update() { dbg_trace(); ComponentManager & mgr = this->component_manager; RefVector behavior_scripts = mgr.get_components_by_type(); for (BehaviorScript & behavior_script : behavior_scripts) { if (!behavior_script.active) continue; Script * script = behavior_script.script.get(); if (script == nullptr) continue; if (!script->initialized) { script->init(); script->initialized = true; } script->update(); } }