feat: add hitch config

This commit is contained in:
kalilistic 2023-02-27 21:05:11 -05:00
parent 644380815f
commit ce48477fb4
6 changed files with 115 additions and 5 deletions

View file

@ -351,6 +351,26 @@ internal sealed class DalamudConfiguration : IServiceType
/// </summary>
public bool WindowIsImmersive { get; set; } = false;
/// <summary>
/// Gets or sets hitch threshold for game network up in milliseconds.
/// </summary>
public double GameNetworkUpHitch { get; set; } = 30;
/// <summary>
/// Gets or sets hitch threshold for game network down in milliseconds.
/// </summary>
public double GameNetworkDownHitch { get; set; } = 30;
/// <summary>
/// Gets or sets hitch threshold for framework update in milliseconds.
/// </summary>
public double FrameworkUpdateHitch { get; set; } = 50;
/// <summary>
/// Gets or sets hitch threshold for ui builder in milliseconds.
/// </summary>
public double UiBuilderHitch { get; set; } = 100;
/// <summary>
/// Load a configuration from the provided path.
/// </summary>