2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 07:47:42 +00:00

Various CAutoMapper fixes

This commit is contained in:
Jack Andersen
2017-11-16 13:49:25 -10:00
parent a914e121ea
commit 0edac28ed4
14 changed files with 52 additions and 49 deletions

View File

@@ -617,17 +617,17 @@ void CPlayer::Update(float dt, CStateManager& mgr)
static const float skStrafeDistances[] =
{
11.8, 11.8, 11.8, 5.0, 6.0, 5.0, 5.0, 6.0
11.8f, 11.8f, 11.8f, 5.0f, 6.0f, 5.0f, 5.0f, 6.0f
};
static const float skDashStrafeDistances[] =
{
30.0, 22.6, 10.0, 10.0, 10.0, 10.0, 10.0
30.0f, 22.6f, 10.0f, 10.0f, 10.0f, 10.0f, 10.0f
};
static const float skOrbitForwardDistances[] =
{
11.8, 11.8, 11.8, 5.0, 6.0, 5.0, 5.0, 6.0
11.8f, 11.8f, 11.8f, 5.0f, 6.0f, 5.0f, 5.0f, 6.0f
};
float CPlayer::UpdateCameraBob(float dt, CStateManager& mgr)