mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
snapshot interpolation default catchup/slowdown speeds increased from 1% to 5%
This commit is contained in:
parent
7137ace5fd
commit
0c7f8f005d
@ -28,11 +28,11 @@ public class SnapshotInterpolationSettings
|
|||||||
|
|
||||||
[Tooltip("Local timeline acceleration in % while catching up.")]
|
[Tooltip("Local timeline acceleration in % while catching up.")]
|
||||||
[Range(0, 1)]
|
[Range(0, 1)]
|
||||||
public double catchupSpeed = 0.01f; // 1%
|
public double catchupSpeed = 0.05f; // 5% (1% was a bit too slow.)
|
||||||
|
|
||||||
[Tooltip("Local timeline slowdown in % while slowing down.")]
|
[Tooltip("Local timeline slowdown in % while slowing down.")]
|
||||||
[Range(0, 1)]
|
[Range(0, 1)]
|
||||||
public double slowdownSpeed = 0.01f; // 1%
|
public double slowdownSpeed = 0.05f; // 5% (1% was a bit too slow.)
|
||||||
|
|
||||||
[Tooltip("Catchup/Slowdown is adjusted over n-second exponential moving average.")]
|
[Tooltip("Catchup/Slowdown is adjusted over n-second exponential moving average.")]
|
||||||
public int driftEmaDuration = 1; // shouldn't need to modify this, but expose it anyway
|
public int driftEmaDuration = 1; // shouldn't need to modify this, but expose it anyway
|
||||||
|
Loading…
Reference in New Issue
Block a user