* fix: doorlights supports emagging now + fix emergency light * add todo to PointLightAirlockSystem.cs * tweak: reduce captain armor size * fix: fix wt550 magazine stored rotation * add: new lobby songs * fix: fix lobby music rotation
29 lines
649 B
C#
29 lines
649 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._White.Lighting.PointLight.Airlock;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class PointLightAirlockComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public bool IsLightsEnabled;
|
|
|
|
[ViewVariables]
|
|
public bool LastBoltsState;
|
|
|
|
[ViewVariables]
|
|
public bool IsEmagged;
|
|
|
|
[ViewVariables]
|
|
public readonly string RedColor = "#D56C6C";
|
|
|
|
[ViewVariables]
|
|
public readonly string BlueColor = "#7F93C0";
|
|
|
|
[ViewVariables]
|
|
public readonly string YellowColor = "#BDC07F";
|
|
|
|
[ViewVariables]
|
|
public readonly string GreenColor = "#7FC080";
|
|
}
|