* Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Atmos device prediction - Canisters - Tanks - Internals AirMixes aren't predicted so nothing on that front but all the UIs should be a lot closer. * Remove details range * Gas tank prediction * Even more sweeping changes * Alerts * rehg * Popup fix * Fix merge conflicts * Fix * Review
25 lines
776 B
C#
25 lines
776 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Lock;
|
|
|
|
/// <summary>
|
|
/// This is used for activatable UIs that require the entity to have a lock in a certain state.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))]
|
|
public sealed partial class ActivatableUIRequiresLockComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// TRUE: the lock must be locked to access the UI.
|
|
/// FALSE: the lock must be unlocked to access the UI.
|
|
/// </summary>
|
|
[DataField]
|
|
public bool RequireLocked;
|
|
|
|
/// <summary>
|
|
/// Sound to be played if an attempt is blocked.
|
|
/// </summary>
|
|
[DataField]
|
|
public SoundSpecifier? AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg");
|
|
}
|