Changeset 2809
- Timestamp:
- Mar 21, 2009, 3:14:46 PM (16 years ago)
- Location:
- code/trunk/src/orxonox/objects
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/items/MultiStateEngine.cc
r2782 r2809 136 136 } 137 137 138 Engine::tick(dt);138 SUPER(MultiStateEngine, tick, dt); 139 139 } 140 140 -
code/trunk/src/orxonox/objects/weaponSystem/projectiles/Projectile.cc
r2782 r2809 82 82 void Projectile::tick(float dt) 83 83 { 84 MovableEntity::tick(dt);84 SUPER(Projectile, tick, dt); 85 85 86 86 if (!this->isActive()) -
code/trunk/src/orxonox/objects/worldentities/Backlight.cc
r2782 r2809 218 218 } 219 219 220 FadingBillboard::tick(dt);220 SUPER(Backlight, tick, dt); 221 221 222 222 if (this->ribbonTrail_ && this->changedirection_ != 0) -
code/trunk/src/orxonox/objects/worldentities/pawns/Pawn.cc
r2782 r2809 115 115 void Pawn::tick(float dt) 116 116 { 117 ControllableEntity::tick(dt);117 SUPER(Pawn, tick, dt); 118 118 119 119 if (this->weaponSystem_) -
code/trunk/src/orxonox/objects/worldentities/pawns/SpaceShip.cc
r2782 r2809 117 117 void SpaceShip::tick(float dt) 118 118 { 119 ControllableEntity::tick(dt);119 SUPER(SpaceShip, tick, dt); 120 120 121 121 if (this->hasLocalController())
Note: See TracChangeset
for help on using the changeset viewer.