Changeset 10616 in orxonox.OLD for branches/scriptimprovements/src/world_entities/script_triggers
- Timestamp:
- Mar 31, 2007, 12:06:51 PM (18 years ago)
- Location:
- branches/scriptimprovements/src/world_entities/script_triggers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.