Changeset 6906 in orxonox.OLD for branches/network/src
- Timestamp:
- Jan 31, 2006, 5:43:57 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/space_ships/space_ship.cc
r6905 r6906 715 715 fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*oldVelocity.z+0.01 ) 716 716 { 717 oldVelocity = velocity; 717 oldVelocity.x = velocity.x; 718 oldVelocity.y = velocity.y; 719 oldVelocity.z = velocity.z; 718 720 PRINTF(0)("SENDING velocity\n"); 719 721 sentSomething = true;
Note: See TracChangeset
for help on using the changeset viewer.