feat: add option to hide when game ui is hidden

This commit is contained in:
Anna
2022-02-07 14:44:19 -05:00
parent a5597f1c84
commit 252498515a
5 changed files with 34 additions and 2 deletions
+2
View File
@@ -15,6 +15,7 @@ internal class Configuration : IPluginConfiguration {
public bool HideChat = true;
public bool HideDuringCutscenes = true;
public bool HideWhenNotLoggedIn = true;
public bool HideWhenUiHidden = true;
public bool NativeItemTooltips = true;
public bool PrettierTimestamps = true;
public bool MoreCompactPretty;
@@ -39,6 +40,7 @@ internal class Configuration : IPluginConfiguration {
this.HideChat = other.HideChat;
this.HideDuringCutscenes = other.HideDuringCutscenes;
this.HideWhenNotLoggedIn = other.HideWhenNotLoggedIn;
this.HideWhenUiHidden = other.HideWhenUiHidden;
this.NativeItemTooltips = other.NativeItemTooltips;
this.PrettierTimestamps = other.PrettierTimestamps;
this.MoreCompactPretty = other.MoreCompactPretty;