Changeset 10332 in orxonox.OLD for branches/playability/src/world_entities/space_ships/space_ship.cc
- Timestamp:
- Jan 24, 2007, 3:23:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/playability/src/world_entities/space_ships/space_ship.cc
r10306 r10332 179 179 // spike2->setName( "SpikeLauncher" ); 180 180 181 /* 181 182 Weapon* acid0 = new AcidLauncher(); 182 183 acid0->setName( "AcidSplasher" ); … … 184 185 Weapon* acid1 = new AcidLauncher(); 185 186 acid1->setName( "AcidSplasher" ); 187 */ 186 188 187 189 this->weaponMan.addWeapon( wpLeft1, 0, 0); … … 203 205 this->weaponMan.addWeapon( wpRight3, 3, 5); 204 206 207 /* 205 208 this->weaponMan.addWeapon( acid0, 0, 6); 206 209 this->weaponMan.addWeapon( acid1, 0, 7); 210 */ 207 211 208 212 this->secWeaponMan.addWeapon( cannon, 0, 2); … … 368 372 //this->travelDistancePlus = Vector2D(38.0, 43.0); 369 373 //this->travelDistanceMinus = Vector2D(-38.0, -43.0); 370 this->travelDistancePlus = Vector2D( 0,0);371 this->travelDistance Plus = Vector2D(0,0);374 this->travelDistancePlus = Vector2D(50,50); 375 this->travelDistanceMinus = Vector2D(-50,-50); 372 376 this->isTravelDistanceInit = false; 373 377 this->actionWidthPercentage = 1; … … 419 423 LoadParam(root, "cameraDistance", this, SpaceShip, setCameraDistance); 420 424 LoadParam(root, "cameraFovy", this, SpaceShip, setCameraFovy); 421 LoadParam(root, "actionWidthPercentage", this, SpaceShip, setActionWidthPercentage);425 //LoadParam(root, "actionWidthPercentage", this, SpaceShip, setActionWidthPercentage); 422 426 423 427 State::getCamera()->setViewMode(Camera::ViewTop); … … 858 862 this->travelNode->setAbsCoor(this->getAbsCoor()); 859 863 this->travelNode->updateNode(0.01f); 860 this->isTravelDistanceInit = false; 861 864 865 if (this->hasPlayer()) 866 this->isTravelDistanceInit = false; 867 862 868 if(this->entityTrack) 863 869 this->travelNode->setParent(this->entityTrack->getTrackNode()); … … 1166 1172 //State::getPlayer()->hud().setOverlayPercentage(100-i); 1167 1173 //updateTravelDistance(); 1168 this->isTravelDistanceInit = false; 1174 if (this->hasPlayer()) 1175 this->isTravelDistanceInit = false; 1169 1176 };
Note: See TracChangeset
for help on using the changeset viewer.