Files
tbd-station-14/Content.Server/PDA/Ringer/RingerComponent.cs
2022-02-08 22:15:06 +11:00

36 lines
952 B
C#

using Content.Shared.PDA;
namespace Content.Server.PDA.Ringer
{
[RegisterComponent]
public sealed class RingerComponent : Component
{
[ViewVariables]
[DataField("ringtone")]
public Note[] Ringtone = new Note[SharedRingerSystem.RingtoneLength];
[DataField("timeElapsed")]
public float TimeElapsed = 0;
/// <summary>
/// Keeps track of how many notes have elapsed if the ringer component is playing.
/// </summary>
[DataField("noteCount")]
public int NoteCount = 0;
[DataField("isPlaying")]
public bool IsPlaying = false;
/// <summary>
/// How far the sound projects in metres.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("range")]
public float Range = 3f;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("volume")]
public float Volume = -4f;
}
}