Changeset 8869 in orxonox.OLD for branches/single_player_map/src/world_entities/script_trigger.h
- Timestamp:
- Jun 28, 2006, 4:48:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/single_player_map/src/world_entities/script_trigger.h
r8783 r8869 35 35 void setTarget(WorldEntity* target) { if(target!=NULL) this->target=target; } 36 36 void setTriggerParent(const std::string& name); 37 void setCallOnce(const bool call) { this->callOnce = call; }38 37 void setTriggerLasts(const bool lasts) { this->triggerLasts = lasts; } 39 38 void setInvert(const bool inv) { this->invert = invert; } … … 51 50 52 51 WorldEntity* target; 53 bool callOnce;54 52 bool triggerLasts; 55 53 bool invert; … … 63 61 bool scriptCalled; 64 62 bool scriptIsOk; 65 bool actionFinished;63 bool scriptFinished; 66 64 int returnCount; //TODO: set return count correctly 67 65
Note: See TracChangeset
for help on using the changeset viewer.