1
0

Modified physics for more vanilla-like behavior

This commit is contained in:
DevToaster
2015-03-30 19:42:32 -04:00
parent d3aba9ed3f
commit c743c7fd0c
15 changed files with 51 additions and 12 deletions

View File

@@ -16,7 +16,9 @@
cBoat::cBoat(double a_X, double a_Y, double a_Z) :
super(etBoat, a_X, a_Y, a_Z, 0.98, 0.7)
{
SetMass(20.f);
SetMass(20.0f);
SetGravity(-16.0f);
SetAirDrag(1.0f);
SetMaxHealth(6);
SetHealth(6);
}