Changeset 9609 in orxonox.OLD
- Timestamp:
- Jul 30, 2006, 11:17:43 AM (18 years ago)
- Location:
- branches/proxy/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/npcs/network_turret.cc
r9608 r9609 63 63 { 64 64 this->setClassID(CL_NETWORK_TURRET, "NetworkTurret"); 65 this->loadModel("models/network_turret_#.obj", 5); 65 this->loadModel("models/ground_turret_#.obj", 5); 66 66 67 this->weapon = new TargetingTurret(); 67 68 this->weapon->loadModel("models/guns/turret2.obj", 10); 69 this->weapon->setParent(this); 70 this->weapon->toList(this->getOMListNumber()); 71 this->weapon->setRelCoor(0,10,-5); 72 this->weapon->requestAction( WA_ACTIVATE); 73 this->weapon->setParent(&this->weaponHolder); 68 74 69 75 this->setHealthMax(300); -
branches/proxy/src/world_entities/space_ships/hover.cc
r9549 r9609 282 282 this->movement(dt); 283 283 this->rotorCycle += this->rotorSpeed * dt; 284 285 this->debugNode(1);286 284 } 287 285 … … 332 330 this->shiftCoor (this->velocity * dt); 333 331 334 332 // limit the maximum rotation speed. 335 333 if (this->rotation != 0.0f) 336 334 {
Note: See TracChangeset
for help on using the changeset viewer.