Changeset 10611 in orxonox.OLD for branches/scriptimprovements/src/world_entities/script_triggers
- Timestamp:
- Mar 29, 2007, 9:16:43 PM (18 years ago)
- Location:
- branches/scriptimprovements/src/world_entities/script_triggers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/scriptimprovements/src/world_entities/script_triggers/script_trigger.h ¶
r10609 r10611 28 28 29 29 /// DO WORK 30 virtual void tick(float timestep) ;30 virtual void tick(float timestep){} 31 31 virtual void executeAction(float timestep); 32 32 void testScriptingFramework(); … … 51 51 52 52 //for internal use 53 bool executionStopped; // true when something goes wrong and the trigger ha sto be stopped53 bool executionStopped; // true when something goes wrong and the trigger had to be stopped 54 54 int returnCount; //TODO: set return count correctly 55 55 -
TabularUnified branches/scriptimprovements/src/world_entities/script_triggers/space_trigger.cc ¶
r10610 r10611 19 19 20 20 ObjectListDefinition(SpaceTrigger); 21 CREATE_FACTORY(SpaceTrigger); 21 22 22 23 CREATE_SCRIPTABLE_CLASS(SpaceTrigger, -
TabularUnified branches/scriptimprovements/src/world_entities/script_triggers/tick_trigger.cc ¶
r10610 r10611 19 19 20 20 ObjectListDefinition(TickTrigger); 21 CREATE_FACTORY(TickTrigger); 21 22 22 23 CREATE_SCRIPTABLE_CLASS(TickTrigger,
Note: See TracChangeset
for help on using the changeset viewer.