Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8259 in orxonox.OLD for branches/script_engine/src/world_entities


Ignore:
Timestamp:
Jun 8, 2006, 3:52:57 PM (18 years ago)
Author:
snellen
Message:

should work now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/script_engine/src/world_entities/script_trigger.cc

    r8246 r8259  
    4949    LoadParam(root, "triggerparent", this, ScriptTrigger, setTriggerParent)
    5050        .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")
    5154        .defaultValues("");
    5255  }
     
    107110     if(scriptIsOk)
    108111     {
     112       testScriptingFramework();
    109113     if(!(script->selectFunction(this->functionName,0)) )
    110114       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.