2023-07-03 17:35:57 -04:00
|
|
|
|
namespace Content.Shared.Anomaly.Effects.Components;
|
2023-01-17 00:05:20 -05:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class PyroclasticAnomalyComponent : Component
|
2023-01-17 00:05:20 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The maximum distance from which you can be ignited by the anomaly.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("maximumIgnitionRadius")]
|
2023-07-03 17:35:57 -04:00
|
|
|
|
public float MaximumIgnitionRadius = 5f;
|
2023-01-17 00:05:20 -05:00
|
|
|
|
}
|