mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
20 lines
564 B
C#
20 lines
564 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,
|
|
PsionicInvisibility = 1 << 3, //Nyano - Summary: adds Psionic Invisibility as a visibility layer. Currently does nothing.
|
|
Ethereal = 1 << 3,
|
|
TelegnosticProjection = 5,
|
|
AGhost = 1 << 5, // WD EDIT
|
|
Abductor = 1 << 10, // I HATE BITWISE OPERATIONS!! GRAAAAH
|
|
}
|
|
}
|