fixed heli buoyancy

This commit is contained in:
Nikolay Korolev 2021-08-14 23:31:32 +03:00
parent 4a5f7464c1
commit eadf0496bf
1 changed files with 2 additions and 1 deletions

View File

@ -3690,6 +3690,7 @@ CAutomobile::ProcessBuoyancy(void)
CVector impulse, point;
if(mod_Buoyancy.ProcessBuoyancy(this, m_fBuoyancy, &point, &impulse)){
bTouchingWater = true;
float timeStep = Max(CTimer::GetTimeStep(), 0.01f);
float impulseRatio = impulse.z / (GRAVITY * m_fMass * timeStep);
float waterResistance = Pow(1.0f - 0.05f*impulseRatio, CTimer::GetTimeStep());
@ -3704,7 +3705,7 @@ CAutomobile::ProcessBuoyancy(void)
heliHitWaterHard = true;
}
}else{
float strength = 1.0f/Max(8.0f*impulseRatio, 1.0f);
float strength = Max(8.0f*impulseRatio, 1.0f);
ApplyMoveForce(-2.0f*impulse/strength);
ApplyTurnForce(-impulse/strength, point);
if(impulseRatio > 0.9f){