1
0

AntiAnomalyZoneComponent.cs 465 B

123456789101112131415
  1. namespace Content.Server.Anomaly.Components;
  2. /// <summary>
  3. /// prohibits the possibility of anomalies appearing in the specified radius around the entity
  4. /// </summary>
  5. [RegisterComponent, Access(typeof(AnomalySystem))]
  6. public sealed partial class AntiAnomalyZoneComponent : Component
  7. {
  8. /// <summary>
  9. /// the radius in which anomalies cannot appear
  10. /// </summary>
  11. [DataField, ViewVariables(VVAccess.ReadWrite)]
  12. public float ZoneRadius = 10;
  13. }