- Timestamp:
- Dec 9, 2008, 2:07:24 AM (16 years ago)
- Location:
- code/branches/objecthierarchy2/src/orxonox/objects/worldentities
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/BlinkingBillboard.cc
r2171 r2361 75 75 void BlinkingBillboard::tick(float dt) 76 76 { 77 SUPER(BlinkingBillboard, tick, dt); 78 77 79 if (Core::isMaster() && this->isActive()) 78 80 { -
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/Camera.cc
r2350 r2361 94 94 void Camera::tick(float dt) 95 95 { 96 SUPER(Camera, tick, dt); 96 97 /* 97 98 // this stuff here may need some adjustments -
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/ControllableEntity.cc
r2256 r2361 232 232 if (this->isActive()) 233 233 { 234 SUPER(ControllableEntity, tick, dt); 235 234 236 this->velocity_ += (dt * this->acceleration_); 235 237 this->node_->translate(dt * this->velocity_, Ogre::Node::TS_LOCAL); -
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/FadingBillboard.cc
r2254 r2361 140 140 void FadingBillboard::tick(float dt) 141 141 { 142 SUPER(FadingBillboard, tick, dt); 143 142 144 if (this->changedirection_ > 0 && (this->fadedColour_.a < this->getColour().a)) 143 145 { -
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/MovableEntity.cc
r2171 r2361 74 74 if (this->isActive()) 75 75 { 76 SUPER(MovableEntity, tick, dt); 77 76 78 this->velocity_ += (dt * this->acceleration_); 77 79 this->node_->translate(dt * this->velocity_); -
code/branches/objecthierarchy2/src/orxonox/objects/worldentities/triggers/Trigger.cc
r2171 r2361 106 106 if (!this->BaseObject::isActive()) 107 107 return; 108 109 SUPER(Trigger, tick, dt); 108 110 109 111 bool newTriggered = this->isTriggered() ^ this->bInvertMode_;
Note: See TracChangeset
for help on using the changeset viewer.