Changeset 6483 in orxonox.OLD for branches/network/src/world_entities
- Timestamp:
- Jan 11, 2006, 3:35:24 PM (19 years ago)
- Location:
- branches/network/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/skybox.cc
r6469 r6483 250 250 if ( rec > 0 ) 251 251 { 252 PRINT(0)("SEND DATA: size=%f texture='%s'\n", size, textureName);253 252 *reciever = rec; 254 253 -
branches/network/src/world_entities/space_ships/space_ship.cc
r6469 r6483 574 574 SYNCHELP_READ_FLOAT( xMouse ); 575 575 SYNCHELP_READ_FLOAT( yMouse ); 576 SYNCHELP_READ_FLOAT( mouseSensitivity ); //TODO: remove this two lines576 SYNCHELP_READ_FLOAT( mouseSensitivity ); 577 577 SYNCHELP_READ_FLOAT( cycle ); 578 578 } … … 609 609 *reciever = 0; 610 610 611 if ( this->getHostID() !=this->getOwner() )611 if ( this->getHostID()==this->getOwner() ) 612 612 { 613 613 int mask = 0; … … 630 630 mask |= MASK_bRollR; 631 631 632 static int oldMask = mask+1; //so it i tdifferent the first time!632 static int oldMask = mask+1; //so it is different the first time! 633 633 static float oldxMouse = xMouse + 1.0; 634 634 static float oldyMouse = yMouse + 1.0; … … 649 649 SYNCHELP_WRITE_FLOAT( yMouse ); 650 650 SYNCHELP_WRITE_FLOAT( mouseSensitivity ); 651 SYNCHELP_WRITE_FLOAT( cycle ); //TODO: remove this two lines651 SYNCHELP_WRITE_FLOAT( cycle ); 652 652 } 653 653 }
Note: See TracChangeset
for help on using the changeset viewer.