Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9235 in orxonox.OLD for trunk/src/world_entities/script_trigger.cc


Ignore:
Timestamp:
Jul 5, 2006, 4:39:02 PM (18 years ago)
Author:
bensch
Message:

merged the presentation back

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/script_trigger.cc

    r9110 r9235  
    2929             ->addMethod("getAbsCoorZ", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorZ))
    3030            //Properties
     31             ->addMethod("setName", ExecutorLua1<BaseObject, const std::string&>(&BaseObject::setName))
    3132             ->addMethod("setTarget", ExecutorLua1<ScriptTrigger, const std::string&>(&ScriptTrigger::setTarget))
    3233             ->addMethod("setTriggerParent", ExecutorLua1<ScriptTrigger, const std::string&>(&ScriptTrigger::setTriggerParent))
     
    5152  this->toList(OM_COMMON);
    5253
     54  radius = 10;
    5355  returnCount = 1;
    5456  scriptFinished = false;
     
    7173 
    7274  }
     75 
    7376}
    7477
     
    215218void ScriptTrigger::setScript(const std::string& file)
    216219{
    217 
    218220  ScriptManager* scriptManager = State::getScriptManager();
    219221  if (scriptManager != NULL)
Note: See TracChangeset for help on using the changeset viewer.