mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 14:39:03 +00:00
figured out magic
This commit is contained in:
parent
2cfd3a9e92
commit
b8c2cf597d
1 changed files with 2 additions and 2 deletions
|
@ -698,7 +698,7 @@ CPlane::InitPlanes(void)
|
||||||
aPlaneLineBits[1].time = time;
|
aPlaneLineBits[1].time = time;
|
||||||
aPlaneLineBits[1].position = position;
|
aPlaneLineBits[1].position = position;
|
||||||
aPlaneLineBits[1].speed = TAXI_SPEED;
|
aPlaneLineBits[1].speed = TAXI_SPEED;
|
||||||
aPlaneLineBits[1].acceleration = 33.0f/32.0f;
|
aPlaneLineBits[1].acceleration = 618.75f/600.0f;
|
||||||
time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f);
|
time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f);
|
||||||
position += 600.0f;
|
position += 600.0f;
|
||||||
|
|
||||||
|
@ -717,7 +717,7 @@ CPlane::InitPlanes(void)
|
||||||
aPlaneLineBits[3].time = time;
|
aPlaneLineBits[3].time = time;
|
||||||
aPlaneLineBits[3].position = position;
|
aPlaneLineBits[3].position = position;
|
||||||
aPlaneLineBits[3].speed = CRUISE_SPEED;
|
aPlaneLineBits[3].speed = CRUISE_SPEED;
|
||||||
aPlaneLineBits[3].acceleration = -33.0f/32.0f;
|
aPlaneLineBits[3].acceleration = -618.75f/600.0f;
|
||||||
time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f);
|
time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f);
|
||||||
position += 600.0f;
|
position += 600.0f;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue