Files
tbd-station-14/Content.Shared/Prototypes/NavMapBlipPrototype.cs
Tayrtahn 86aa82f2b6 Cleanup: Remove redundant prototype name specifications (#35793)
* Remove redundant prototype name specifications

* These can stay
2025-03-19 19:30:31 +01:00

43 lines
1.0 KiB
C#

using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared.Prototypes;
[Prototype]
public sealed partial class NavMapBlipPrototype : IPrototype
{
[ViewVariables]
[IdDataField]
public string ID { get; private set; } = default!;
/// <summary>
/// Sets whether the associated entity can be selected when the blip is clicked
/// </summary>
[DataField]
public bool Selectable = false;
/// <summary>
/// Sets whether the blips is always blinking
/// </summary>
[DataField]
public bool Blinks = false;
/// <summary>
/// Sets the color of the blip
/// </summary>
[DataField]
public Color Color { get; private set; } = Color.LightGray;
/// <summary>
/// Texture paths associated with the blip
/// </summary>
[DataField]
public ResPath[]? TexturePaths { get; private set; }
/// <summary>
/// Sets the UI scaling of the blip
/// </summary>
[DataField]
public float Scale { get; private set; } = 1f;
}