Ver Fonte

re-enables boyancy as per: http://www.garagegames.com/community/blogs/view/22403#comments

Azaezel há 12 anos atrás
pai
commit
6879f1b328
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Engine/source/T3D/player.cpp

+ 1 - 1
Engine/source/T3D/player.cpp

@@ -3122,7 +3122,7 @@ void Player::updateMove(const Move* move)
          if ( currHeight + mVelocity.z * TickSec * C > mLiquidHeight )
             buoyancyForce *= M;
                   
-         //mVelocity.z -= buoyancyForce;
+         mVelocity.z -= buoyancyForce;
       }
    }