Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
Leon Friedrich 25b9e048e5 Visualizer systems update (#8203)
* optimize appearance updating for subfloor entities

* sprite event args

* a

* stop double appearance update.
2022-05-16 14:41:23 +10:00

31 lines
839 B
C#

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server.Entry
{
public static class IgnoredComponents
{
public static string[] List => new [] {
"ConstructionGhost",
"IconSmooth",
"StasisBedVisuals",
"InteractionOutline",
"MeleeWeaponArcAnimation",
"AnimationsTest",
"ItemStatus",
"VehicleVisuals",
"Marker",
"Clickable",
"Icon",
"ClientEntitySpawner",
"CharacterInfo",
"ItemCabinetVisuals",
"LatheVisuals",
"DiseaseMachineVisuals",
"HandheldGPS",
"ToggleableLightVisuals",
"CableVisualizer",
"PotencyVisuals",
"PaperVisuals"
};
}
}