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.
26 lines
659 B
C#
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",
|
|
};
|
|
}
|
|
}
|