Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6907 in orxonox.OLD


Ignore:
Timestamp:
Jan 31, 2006, 5:46:28 PM (18 years ago)
Author:
rennerc
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/world_entities/space_ships/space_ship.cc

    r6906 r6907  
    711711    }
    712712#define __OFFSET_VEL 0.05
    713     if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL*oldVelocity.x+0.01 ||
    714          fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL*oldVelocity.y+0.01 ||
    715          fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*oldVelocity.z+0.01 )
     713    if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL*oldVelocity.x+0.1 ||
     714         fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL*oldVelocity.y+0.1 ||
     715         fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*oldVelocity.z+0.1 )
    716716    {
    717717      oldVelocity.x = velocity.x;
Note: See TracChangeset for help on using the changeset viewer.