Changeset 1534 for code/trunk/src/orxonox/objects
- Timestamp:
- Jun 4, 2008, 8:53:10 PM (16 years ago)
- Location:
- code/trunk/src/orxonox/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/SpaceShip.cc
r1505 r1534 69 69 SpaceShip* SpaceShip::instance_s; 70 70 71 71 72 SpaceShip *SpaceShip::getLocalShip(){ 72 73 Iterator<SpaceShip> it; … … 163 164 164 165 void SpaceShip::registerAllVariables(){ 165 registerVar( &camName_, camName_.length()+1, network::STRING, 0x1 );166 registerVar( &camName_, camName_.length()+1, network::STRING, 0x1 ); 166 167 registerVar( &maxSpeed_, sizeof(maxSpeed_), network::DATA, 0x1); 167 168 registerVar( &maxSideAndBackSpeed_, sizeof(maxSideAndBackSpeed_), network::DATA, 0x1); … … 469 470 if( myShip_ ) 470 471 { 471 COUT( 4) << "steering our ship: " << objectID << std::endl;472 COUT(5) << "steering our ship: " << objectID << std::endl; 472 473 this->acceleration_.x = 0; 473 474 this->acceleration_.y = 0; -
code/trunk/src/orxonox/objects/SpaceShip.h
r1505 r1534 44 44 { 45 45 public: 46 46 47 47 48 static SpaceShip *getLocalShip();
Note: See TracChangeset
for help on using the changeset viewer.