* Adds new accessibility slider for speech bubble text opacity. Adds new accessibility slider for speech bubble background opacity. Adds new Cvars to track speech bubble text and background opacity settings. * Adds a separate option slider for the opacity of the speaker's name on speech bubbles. * Changes text and speaker default opacity to 100%, as it was before. * Apply suggestions from code review --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
65 lines
3.1 KiB
C#
65 lines
3.1 KiB
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
/// <summary>
|
|
/// Chat window opacity slider, controlling the alpha of the chat window background.
|
|
/// Goes from to 0 (completely transparent) to 1 (completely opaque)
|
|
/// </summary>
|
|
public static readonly CVarDef<float> ChatWindowOpacity =
|
|
CVarDef.Create("accessibility.chat_window_transparency", 0.85f, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
/// <summary>
|
|
/// Toggle for visual effects that may potentially cause motion sickness.
|
|
/// Where reasonable, effects affected by this CVar should use an alternate effect.
|
|
/// Please do not use this CVar as a bandaid for effects that could otherwise be made accessible without issue.
|
|
/// </summary>
|
|
public static readonly CVarDef<bool> ReducedMotion =
|
|
CVarDef.Create("accessibility.reduced_motion", false, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
public static readonly CVarDef<bool> ChatEnableColorName =
|
|
CVarDef.Create("accessibility.enable_color_name",
|
|
true,
|
|
CVar.CLIENTONLY | CVar.ARCHIVE,
|
|
"Toggles displaying names with individual colors.");
|
|
|
|
/// <summary>
|
|
/// Screen shake intensity slider, controlling the intensity of the CameraRecoilSystem.
|
|
/// Goes from 0 (no recoil at all) to 1 (regular amounts of recoil)
|
|
/// </summary>
|
|
public static readonly CVarDef<float> ScreenShakeIntensity =
|
|
CVarDef.Create("accessibility.screen_shake_intensity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
/// <summary>
|
|
/// A generic toggle for various visual effects that are color sensitive.
|
|
/// As of 2/16/24, only applies to progress bar colors.
|
|
/// </summary>
|
|
public static readonly CVarDef<bool> AccessibilityColorblindFriendly =
|
|
CVarDef.Create("accessibility.colorblind_friendly", false, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
/// <summary>
|
|
/// Speech bubble text opacity slider, controlling the alpha of speech bubble's text.
|
|
/// Goes from to 0 (completely transparent) to 1 (completely opaque)
|
|
/// </summary>
|
|
public static readonly CVarDef<float> SpeechBubbleTextOpacity =
|
|
CVarDef.Create("accessibility.speech_bubble_text_opacity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
/// <summary>
|
|
/// Speech bubble speaker opacity slider, controlling the alpha of the speaker's name in a speech bubble.
|
|
/// Goes from to 0 (completely transparent) to 1 (completely opaque)
|
|
/// </summary>
|
|
public static readonly CVarDef<float> SpeechBubbleSpeakerOpacity =
|
|
CVarDef.Create("accessibility.speech_bubble_speaker_opacity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
/// <summary>
|
|
/// Speech bubble background opacity slider, controlling the alpha of the speech bubble's background.
|
|
/// Goes from to 0 (completely transparent) to 1 (completely opaque)
|
|
/// </summary>
|
|
public static readonly CVarDef<float> SpeechBubbleBackgroundOpacity =
|
|
CVarDef.Create("accessibility.speech_bubble_background_opacity", 0.75f, CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
|
|
|
|
}
|