Changeset 10616 in orxonox.OLD
- Timestamp:
- Mar 31, 2007, 12:06:51 PM (18 years ago)
- Location:
- branches/scriptimprovements/src
- Files:
-
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/scriptimprovements/src/lib/script_engine/Makefile.am
r10561 r10616 17 17 script.cc \ 18 18 script_manager.cc \ 19 executor_lua_state.cc \ 20 lua_vector.cc 19 executor_lua_state.cc 21 20 22 21 AM_CPPFLAGS= @LUA_INCLUDES@ … … 28 27 script_class.h \ 29 28 script_method.h \ 30 executor_lua_state.h \ 31 lua_vector.h 29 executor_lua_state.h 32 30 33 31 -
branches/scriptimprovements/src/world_entities/Makefile.am
r10437 r10616 27 27 effects/trail.cc\ 28 28 elements/glgui_energywidget.cc\ 29 elements/glgui_energywidgetvertical.cc 29 elements/glgui_energywidgetvertical.cc\ 30 script_triggers/script_trigger.cc 30 31 31 32 … … 51 52 effects/wobblegrid.h\ 52 53 elements/glgui_energywidget.h\ 53 elements/glgui_energywidgetvertical.h 54 elements/glgui_energywidgetvertical.h\ 55 script_triggers/script_trigger.h 54 56 55 57 -
branches/scriptimprovements/src/world_entities/WorldEntities.am
r10606 r10616 102 102 world_entities/effects/blink.cc \ 103 103 \ 104 world_entities/script_triggers/script_trigger.cc \ 104 world_entities/script_triggers/space_trigger.cc \ 105 world_entities/script_triggers/tick_trigger.cc \ 105 106 \ 106 107 \ … … 235 236 effects/blink.h \ 236 237 \ 237 script_triggers/script_trigger.h \ 238 script_triggers/space_trigger.h \ 239 script_triggers/tick_trigger.h \ 238 240 \ 239 241 \ -
branches/scriptimprovements/src/world_entities/script_triggers/script_trigger.h
r10614 r10616 44 44 private: 45 45 46 Script* script;47 std::string functionName;48 46 bool doDebugDraw; 49 50 47 51 48 //for internal use … … 54 51 55 52 protected: 56 53 Script* script; 54 std::string functionName; 57 55 bool scriptCalled; 58 56 bool scriptIsOk; -
branches/scriptimprovements/src/world_entities/script_triggers/space_trigger.cc
r10614 r10616 14 14 */ 15 15 16 16 #include "util/loading/factory.h" 17 17 #include "space_trigger.h" 18 18 #include "debug.h" … … 49 49 { 50 50 this->registerObject(this, SpaceTrigger::_objectList); 51 this->toList(OM_COMMON);51 //this->toList(OM_COMMON); 52 52 53 53 radius = 10; -
branches/scriptimprovements/src/world_entities/script_triggers/tick_trigger.cc
r10614 r10616 14 14 */ 15 15 16 16 #include "util/loading/factory.h" 17 17 #include "tick_trigger.h" 18 18 #include "debug.h" … … 43 43 { 44 44 this->registerObject(this, TickTrigger::_objectList); 45 this->toList(OM_COMMON);45 //this->toList(OM_COMMON); 46 46 47 47 if(root != NULL)
Note: See TracChangeset
for help on using the changeset viewer.