Fix view bobbing reduction speed

This commit is contained in:
Goodlyay 2017-03-04 22:43:54 -08:00
parent c9dc343efa
commit 95125b2bf7

View File

@ -76,7 +76,7 @@ namespace ClassicalSharp.Entities {
} }
static void DoTilt(ref float tilt, bool reduce) { static void DoTilt(ref float tilt, bool reduce) {
if (reduce) tilt *= 0.93f; if (reduce) tilt *= 0.84f;
else tilt += 0.1f; else tilt += 0.1f;
Utils.Clamp(ref tilt, 0, 1); Utils.Clamp(ref tilt, 0, 1);
} }