Changeset 8259 in orxonox.OLD for branches/script_engine/src/world_entities
- Timestamp:
- Jun 8, 2006, 3:52:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/world_entities/script_trigger.cc
r8246 r8259 49 49 LoadParam(root, "triggerparent", this, ScriptTrigger, setTriggerParent) 50 50 .describe("The name of the parent as it is in the *.oxw file") 51 .defaultValues(""); 52 LoadParam(root, "callonce", this, ScriptTrigger, setCallOnce) 53 .describe("True if the script shoul only be called once") 51 54 .defaultValues(""); 52 55 } … … 107 110 if(scriptIsOk) 108 111 { 112 testScriptingFramework(); 109 113 if(!(script->selectFunction(this->functionName,0)) ) 110 114 printf("Error ScriptTrigger: Selection of %s in %s failed.\n",functionName.c_str(), script->getFileName().c_str());
Note: See TracChangeset
for help on using the changeset viewer.