* Add a subfloor vismask Significantly cuts down on sent entity count. * More optimisations * Fix command * Fixes * namespace cleanup * Review * Vismasks * Content update * Bandaid * awewa * Revert these * reh * Update Content.Shared/SubFloor/TrayScannerComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
15 lines
272 B
C#
15 lines
272 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Eye
|
|
{
|
|
[Flags]
|
|
[FlagsFor(typeof(VisibilityMaskLayer))]
|
|
public enum VisibilityFlags : int
|
|
{
|
|
None = 0,
|
|
Normal = 1 << 0,
|
|
Ghost = 1 << 1,
|
|
Subfloor = 1 << 2,
|
|
}
|
|
}
|