Changeset 10771 in orxonox.OLD for branches/presentation/src/world_entities/projectiles
- Timestamp:
- Jun 27, 2007, 7:01:08 PM (18 years ago)
- Location:
- branches/presentation/src/world_entities/projectiles
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/projectiles/projectile_weapon.cc
r10749 r10771 147 147 } 148 148 149 149 /* 150 150 void ProjectileWeapon::collidesWith (WorldEntity* target, const Vector& location) 151 151 { … … 154 154 this->destroy(target); 155 155 } 156 156 */ 157 157 158 158 -
branches/presentation/src/world_entities/projectiles/projectile_weapon.h
r10618 r10771 59 59 virtual void destroy (WorldEntity* killer); 60 60 61 virtual void collidesWith (WorldEntity* target, const Vector& location); //!< collision handler; used against SpaceShip as most target will be61 // virtual void collidesWith (WorldEntity* target, const Vector& location); //!< collision handler; used against SpaceShip as most target will be 62 62 63 63 -
branches/presentation/src/world_entities/projectiles/test_bullet.cc
r10737 r10771 35 35 this->registerObject(this, TestBullet::_objectList); 36 36 37 this->loadModel("models/projectiles/orx-rocket.obj", . 3);37 this->loadModel("models/projectiles/orx-rocket.obj", .6); // FIXME model no longer avaiable 38 38 39 39 this->setMinEnergy(1); … … 170 170 this->getAbsDir().matrix (matrix); 171 171 glMultMatrixf((float*)matrix); 172 glScalef(2.0, 2.0, 2.0); 172 // glScalef(2.0, 2.0, 2.0); // no double rescale, changed size in modelloader 173 173 this->getModel()->draw(); 174 174
Note: See TracChangeset
for help on using the changeset viewer.