add to debugsettings.json, just in case

This commit is contained in:
JohnCorby 2021-12-30 15:33:49 -08:00
parent b93ece8bd8
commit f4e9cd9b0a
2 changed files with 9 additions and 8 deletions

View File

@ -5,24 +5,24 @@ namespace QSB.Utility
public class DebugSettings
{
[JsonProperty("debugMode")]
public bool DebugMode { get; set; } = false;
public bool DebugMode { get; set; }
[JsonProperty("drawLines")]
public bool DrawLines { get; set; } = false;
public bool DrawLines { get; set; }
[JsonProperty("showQuantumVisibilityObjects")]
public bool ShowQuantumVisibilityObjects { get; set; } = false;
public bool ShowQuantumVisibilityObjects { get; set; }
[JsonProperty("showDebugLabels")]
public bool ShowDebugLabels { get; set; } = false;
public bool ShowDebugLabels { get; set; }
[JsonProperty("avoidTimeSync")]
public bool AvoidTimeSync { get; set; } = false;
public bool AvoidTimeSync { get; set; }
[JsonProperty("skipTitleScreen")]
public bool SkipTitleScreen { get; set; } = false;
public bool SkipTitleScreen { get; set; }
[JsonProperty("greySkybox")]
public bool GreySkybox { get; set; } = false;
public bool GreySkybox { get; set; }
}
}

View File

@ -4,5 +4,6 @@
"showQuantumVisibilityObjects": false,
"showDebugLabels": true,
"avoidTimeSync": false,
"skipTitleScreen": true
"skipTitleScreen": true,
"greySkybox": false
}