1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 20:53:50 +00:00

Bug #1303 - resolves the bug by tweaking the slope constant (the value 49 was selected to mimic vanilla behaviour for a low level character exploring Seyda Neen). The feature to vary the climbable angle based on acrobatics is still to be implemented.

This commit is contained in:
cc9cii 2014-05-18 12:05:08 +10:00
parent b36bb58e8c
commit 12dc5cf4ea

View file

@ -33,7 +33,7 @@ using namespace Ogre;
namespace MWWorld
{
static const float sMaxSlope = 60.0f;
static const float sMaxSlope = 49.0f;
static const float sStepSize = 32.0f;
// Arbitrary number. To prevent infinite loops. They shouldn't happen but it's good to be prepared.
static const int sMaxIterations = 8;