v1.7.7.0 (Winter Update 2024)

This commit is contained in:
Regalis11
2024-12-11 13:26:13 +02:00
parent 7d5b7a310a
commit f6349b2175
256 changed files with 4794 additions and 1653 deletions
@@ -188,6 +188,7 @@ namespace Barotrauma
{
GraphicsSettings gfxSettings = new GraphicsSettings
{
Display = 0,
RadialDistortion = true,
InventoryScale = 1.0f,
LightMapScale = 1.0f,
@@ -218,6 +219,7 @@ namespace Barotrauma
return retVal;
}
public int Display;
public int Width;
public int Height;
public bool VSync;
@@ -308,6 +310,7 @@ namespace Barotrauma
new Dictionary<InputType, KeyOrMouse>()
{
{ InputType.Run, Keys.LeftShift },
{ InputType.ToggleRun, Keys.None },
{ InputType.Attack, Keys.R },
{ InputType.Crouch, Keys.LeftControl },
{ InputType.Grab, Keys.G },
@@ -566,7 +569,8 @@ namespace Barotrauma
bool setGraphicsMode =
resolutionChanged ||
currentConfig.Graphics.VSync != newConfig.Graphics.VSync ||
currentConfig.Graphics.DisplayMode != newConfig.Graphics.DisplayMode;
currentConfig.Graphics.DisplayMode != newConfig.Graphics.DisplayMode ||
currentConfig.Graphics.Display != newConfig.Graphics.Display;
#if CLIENT
bool keybindsChanged = false;