Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
Pieter-Jan Briers 1ce2155315 Add new "OptionsVisualizer" (#25128)
This is a visualizer somewhat similar to the Generic. It allows configuring appearance info based on specific CVars the user has set. This allows YAML to easily configure alternatives for accessibility CVars like reduced motion.
2024-02-17 15:52:11 -05:00

26 lines
659 B
C#

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server.Entry
{
public static class IgnoredComponents
{
public static string[] List => new[] {
"ConstructionGhost",
"IconSmooth",
"InteractionOutline",
"Marker",
"GuidebookControlsTest",
"GuideHelp",
"Clickable",
"Icon",
"HandheldGPS",
"CableVisualizer",
"UIFragment",
"PdaBorderColor",
"InventorySlots",
"LightFade",
"HolidayRsiSwap",
"OptionsVisualizer",
};
}
}