np2.PredictiveInterpolation.ErrorAccumulationDecreaseMultiplier
np2.PredictiveInterpolation.ErrorAccumulationDecreaseMultiplier
#Overview
name: np2.PredictiveInterpolation.ErrorAccumulationDecreaseMultiplier
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Multiplier to adjust how fast we decrease accumulated error time when we no longer accumulate error.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/PhysicsEngine/PhysicsReplication.cpp:156
Scope (from outer to inner):
file
namespace PhysicsReplicationCVars
namespace PredictiveInterpolationCVars
Source code excerpt:
float ErrorAccumulationDecreaseMultiplier = 0.5f;
static FAutoConsoleVariableRef CVarErrorAccumulationDecreaseMultiplier(TEXT("np2.PredictiveInterpolation.ErrorAccumulationDecreaseMultiplier"), ErrorAccumulationDecreaseMultiplier, TEXT("Multiplier to adjust how fast we decrease accumulated error time when we no longer accumulate error."));
float ErrorAccumulationSeconds = 3.0f;
static FAutoConsoleVariableRef CVarErrorAccumulationSeconds(TEXT("np2.PredictiveInterpolation.ErrorAccumulationSeconds"), ErrorAccumulationSeconds, TEXT("Perform a reposition if replication have not been able to cover the min expected distance towards the target for this amount of time."));
bool bDisableErrorVelocityLimits = false;
static FAutoConsoleVariableRef CVarDisableErrorVelocityLimits(TEXT("np2.PredictiveInterpolation.DisableErrorVelocityLimits"), bDisableErrorVelocityLimits, TEXT("Disable the velocity limit and allow error accumulation at any velocity."));