Add options for UI hiding.

This commit is contained in:
Ottermandias 2022-05-30 16:11:35 +02:00
parent 50a3a20718
commit 3d7faad2ae
3 changed files with 42 additions and 3 deletions

View file

@ -17,6 +17,9 @@ public partial class Configuration : IPluginConfiguration
public bool EnableMods { get; set; } = true;
public string ModDirectory { get; set; } = string.Empty;
public bool HideUiInGPose { get; set; } = false;
public bool HideUiInCutscenes { get; set; } = true;
public bool HideUiWhenUiHidden { get; set; } = false;
#if DEBUG
public bool DebugMode { get; set; } = true;