Files
wwdpublic/Content.Server/Entry/IgnoredComponents.cs
Pieter-Jan Briers 5da6086a02 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.

(cherry picked from commit 1ce21553152199e3d97a8d02c11922fb8db5fd52)
2024-02-18 23:39:23 +01: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",
};
}
}