Fixed no data annotations on meteor fields

This commit is contained in:
Ben C 2022-06-26 17:57:20 -04:00
parent 0dc85f558c
commit 61d5bed112
No known key found for this signature in database
GPG Key ID: 7F8F04504B670474

View File

@ -262,21 +262,25 @@ namespace NewHorizons.External.Modules
/// <summary> /// <summary>
/// Maximum time between meteor launches. /// Maximum time between meteor launches.
/// </summary> /// </summary>
[DefaultValue(20f)]
public float maxInterval = 20f; public float maxInterval = 20f;
/// <summary> /// <summary>
/// Maximum random speed at which meteors are launched. /// Maximum random speed at which meteors are launched.
/// </summary> /// </summary>
[DefaultValue(150f)]
public float maxLaunchSpeed = 150f; public float maxLaunchSpeed = 150f;
/// <summary> /// <summary>
/// Minimum time between meteor launches. /// Minimum time between meteor launches.
/// </summary> /// </summary>
[DefaultValue(5f)]
public float minInterval = 5f; public float minInterval = 5f;
/// <summary> /// <summary>
/// Minimum random speed at which meteors are launched. /// Minimum random speed at which meteors are launched.
/// </summary> /// </summary>
[DefaultValue(50f)]
public float minLaunchSpeed = 50f; public float minLaunchSpeed = 50f;
/// <summary> /// <summary>