mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 10:06:42 +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:
parent
b36bb58e8c
commit
12dc5cf4ea
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ using namespace Ogre;
|
||||||
namespace MWWorld
|
namespace MWWorld
|
||||||
{
|
{
|
||||||
|
|
||||||
static const float sMaxSlope = 60.0f;
|
static const float sMaxSlope = 49.0f;
|
||||||
static const float sStepSize = 32.0f;
|
static const float sStepSize = 32.0f;
|
||||||
// Arbitrary number. To prevent infinite loops. They shouldn't happen but it's good to be prepared.
|
// Arbitrary number. To prevent infinite loops. They shouldn't happen but it's good to be prepared.
|
||||||
static const int sMaxIterations = 8;
|
static const int sMaxIterations = 8;
|
||||||
|
|
Loading…
Reference in a new issue