summaryrefslogtreecommitdiff
path: root/Penguloon/StaticUIValues.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/StaticUIValues.cs')
-rw-r--r--Penguloon/StaticUIValues.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Penguloon/StaticUIValues.cs b/Penguloon/StaticUIValues.cs
index 015ffc0..e675ea5 100644
--- a/Penguloon/StaticUIValues.cs
+++ b/Penguloon/StaticUIValues.cs
@@ -34,12 +34,15 @@ namespace Penguloon
{
ScreenViewport = main.GraphicsDevice.Viewport.Bounds.Size.ToVector2();
- if(ScreenViewport.X >= 2440)
+ IngameUIWidth = 250;
+
+ if (ScreenViewport.X >= 2440)
{
LevelSelectorHeight = 600;
LoadingProgressbarSize = new Vector2((int)(800 * 2), (int)(150 * 2));
MenuButtonSize = new Vector2(800, 150);
MenuFont = "Fonts/GWENT/72";
+ IngameUIWidth = 350;
}
else if (ScreenViewport.X >= 1920)
{
@@ -47,6 +50,7 @@ namespace Penguloon
MenuButtonSize = new Vector2((int)(800 * 1), (int)(150 * 1));
LoadingProgressbarSize = new Vector2((int)(800 * 1.3), (int)(150 * 1.3));
MenuFont = "Fonts/GWENT/72";
+ IngameUIWidth = 350;
}
else if (ScreenViewport.X >= 1280)
{
@@ -69,7 +73,6 @@ namespace Penguloon
LoadingProgressbarPosition = new Vector2((ScreenViewport.X - LoadingProgressbarSize.X) / 2, ScreenViewport.Y - LoadingProgressbarSize.Y - 200);
LoadingProgressbarValuePosition = new Vector2(LoadingProgressbarPosition.X + 5, LoadingProgressbarPosition.Y + 5);
- IngameUIWidth = 250;
SnowflakeSize = 100;
IngameUITextAreaHeight = 120;
IngameUIPlayButtonHeight = 120;