Enum SmoothingMethod
Enum to select the different smoothing method offered by CounterConfiguration.
Namespace: Unity.Multiplayer.Tools.NetStatsMonitor
Syntax
public enum SmoothingMethod
Fields
| Name | Description | Value |
|---|---|---|
| ExponentialMovingAverage | Smoothing method using an exponential moving average. This method takes less memory than SimpleMovingAverage since it doesn't require to keep samples to obtain a value. |
0 |
| SimpleMovingAverage | Smoothing method using a simple moving average. |
1 |