Преглед изворни кода

lua boot file is loaded at device init

mikymod пре 12 година
родитељ
комит
26227e7ddf
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      src/Device.cpp

+ 3 - 0
src/Device.cpp

@@ -477,7 +477,10 @@ void Device::create_debug_renderer()
 //-----------------------------------------------------------------------------
 void Device::create_script_system()
 {
+	// Create script system
 	m_script_system = new ScriptSystem();
+	// Load boot script which contains init, update and shutdown functions
+	m_script_system->load_file(BOOT_SCRIPT);
 }
 
 //-----------------------------------------------------------------------------