diff options
Diffstat (limited to 'Penguloon/StaticUIValues.cs')
| -rw-r--r-- | Penguloon/StaticUIValues.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Penguloon/StaticUIValues.cs b/Penguloon/StaticUIValues.cs index f4637b7..0734bad 100644 --- a/Penguloon/StaticUIValues.cs +++ b/Penguloon/StaticUIValues.cs @@ -21,6 +21,8 @@ namespace Penguloon public static string IngameFont { get; set; } + public static string StatsFont { get; set; } + public static int IngameUIWidth { get; set; } public static int BorderWidth { get; set; } = 20; @@ -50,6 +52,7 @@ namespace Penguloon ChangeSpeedButtonWidth = 200; IngameOptionsSize = new Vector2(800, 1000); IngameFont = "Fonts/GWENT/36"; + StatsFont = "Fonts/GWENT/48"; IngameUITextAreaHeight = 160; } else if (ScreenViewport.X >= 1920) @@ -63,6 +66,7 @@ namespace Penguloon ChangeSpeedButtonWidth = 200; IngameOptionsSize = new Vector2((int)(800 * 0.85), (int)(1000 * 0.85)); IngameFont = "Fonts/GWENT/36"; + StatsFont = "Fonts/GWENT/48"; IngameUITextAreaHeight = 160; } else if (ScreenViewport.X >= 1280) @@ -75,6 +79,7 @@ namespace Penguloon ChangeSpeedButtonWidth = 130; IngameOptionsSize = new Vector2((int)(800 * 0.7), (int)(1000 * 0.7)); IngameFont = "Fonts/GWENT/24"; + StatsFont = "Fonts/GWENT/48"; IngameUITextAreaHeight = 120; } else @@ -87,6 +92,7 @@ namespace Penguloon ChangeSpeedButtonWidth = 130; IngameOptionsSize = new Vector2((int)(800 * 0.7), (int)(1000 * 0.7)); IngameFont = "Fonts/GWENT/24"; + StatsFont = "Fonts/GWENT/48"; IngameUITextAreaHeight = 120; } |
