Changeset 2031 for code/branches/objecthierarchy/src/orxonox
- Timestamp:
- Oct 28, 2008, 9:11:02 PM (16 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/objects/infos/Level.cc
r2019 r2031 52 52 53 53 this->registerVariables(); 54 this->xmlfilename_ = this->getFilename() ;54 this->xmlfilename_ = this->getFilename().substr(Settings::getDataPath().length()); 55 55 56 56 COUT(0) << "created Level" << std::endl; -
code/branches/objecthierarchy/src/orxonox/objects/worldentities/triggers/Trigger.cc
r2029 r2031 69 69 70 70 this->getNode()->attachObject(this->debugBillboard_.getBillboardSet()); 71 this->setObjectMode(0x0); 71 72 } 72 73 -
code/branches/objecthierarchy/src/orxonox/tools/Timer.cc
r1968 r2031 112 112 void TimerBase::run() const 113 113 { 114 bool temp = this->bKillAfterCall_; // to avoid errors with bKillAfterCall_=false and an exutors which destroy the timer 115 114 116 (*this->executor_)(); 115 117 116 if (t his->bKillAfterCall_)118 if (temp) 117 119 delete this; 118 120 }
Note: See TracChangeset
for help on using the changeset viewer.