mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Disable lighting by default on MacOS and Unix. (#283)
The rendering doesn't work at all and it's better that it defaults off for now. It can still be enabled with F6 in game.
This commit is contained in:
committed by
Silver
parent
7718d6bdc8
commit
1e5f539d50
@@ -132,6 +132,11 @@ namespace SS14.Client.State.States
|
||||
|
||||
public GameScreen(IDictionary<Type, object> managers) : base(managers)
|
||||
{
|
||||
if (Environment.OSVersion.Platform == PlatformID.MacOSX || Environment.OSVersion.Platform == PlatformID.Unix)
|
||||
{
|
||||
// Disable lighting on non-Windows versions by default because the rendering is broken.
|
||||
bFullVision = true;
|
||||
}
|
||||
}
|
||||
|
||||
#region IState Members
|
||||
|
||||
Reference in New Issue
Block a user