mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 18:47:10 +02:00
* Removed the Interfaces folder. * All objects inside the GameObjects subfolders are now in the GameObjects namespace. * Added a Resharper DotSettings file to mark the GameObjects subfolders as not providing namespaces. * Simplified Robust.client.Graphics namespace. * Automated remove redundant using statements.
15 lines
491 B
C#
15 lines
491 B
C#
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
public sealed class LightManager : ILightManager
|
|
{
|
|
public bool Enabled { get; set; } = true;
|
|
public bool DrawShadows { get; set; } = true;
|
|
public bool DrawHardFov { get; set; } = true;
|
|
public bool DrawLighting { get; set; } = true;
|
|
public bool LockConsoleAccess { get; set; } = false;
|
|
public Color AmbientLightColor { get; set; } = Color.FromSrgb(Color.Black);
|
|
}
|
|
}
|