Changeset 9245 in orxonox.OLD for branches/scripting/src/world_entities/script_trigger.h
- Timestamp:
- Jul 6, 2006, 5:32:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/scripting/src/world_entities/script_trigger.h
r9006 r9245 35 35 void setTarget(WorldEntity* target) { if(target!=NULL) this->target=target; } 36 36 void setTriggerParent(const std::string& name); 37 void setTriggerLasts(const bool lasts) { this->triggerLasts = lasts; } 37 void setTriggerRemains(const bool lasts) { this->triggerRemains = lasts; } 38 void setActiveOnCreation(const bool avtive) { this->activeOnCreation = avtive; } 38 39 void setInvert(const bool inv) { this->invert = invert; } 39 40 void setDelay(float delay) { this->delay = delay; }; … … 50 51 51 52 WorldEntity* target; 52 bool triggerLasts; 53 bool triggerRemains; 54 bool activeOnCreation; 53 55 bool invert; 54 56 float radius;
Note: See TracChangeset
for help on using the changeset viewer.