* Additive lighting * adds options for all your optional needs * one last tiny adjustment before we hit the create pr button * spaghetti condensing * add ccvar * overlight correction * fix requested changes * cvar fix * last fix * nice --------- Co-authored-by: deathride58 <deathride58@users.noreply.github.com> Co-authored-by: MetalSage <metalsage.official@gmail.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: Ed <edwardxperia2000@gmail.com>
21 lines
581 B
C#
21 lines
581 B
C#
using Content.Shared._CP14.Configuration;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client._CP14.Options;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class CP14OptionsMenuMainTab : Control
|
|
{
|
|
public CP14OptionsMenuMainTab()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
Control.AddOptionCheckBox(CP14ConfigVars.WaveShaderEnabled, WaveShaderEnabled);
|
|
Control.AddOptionCheckBox(CP14ConfigVars.PostProcess, PostProcessCheckBox);
|
|
|
|
Control.Initialize();
|
|
}
|
|
}
|