mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-26 07:35:43 +00:00
Fix Projectile Air Resistance
This commit is contained in:
parent
4f33668c88
commit
03c2489937
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ CProjectile::CProjectile(int32 model) : CObject()
|
|||
{
|
||||
m_fMass = 1.0f;
|
||||
m_fTurnMass = 1.0f;
|
||||
m_fAirResistance = 0.99f;
|
||||
m_fAirResistance = 0.99999f;
|
||||
m_fElasticity = 0.75f;
|
||||
m_fBuoyancy = GRAVITY * m_fMass * 0.1f;
|
||||
bExplosionProof = true;
|
||||
|
|
Loading…
Reference in a new issue