mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fixed no data annotations on meteor fields
This commit is contained in:
parent
0dc85f558c
commit
61d5bed112
4
NewHorizons/External/Modules/PropModule.cs
vendored
4
NewHorizons/External/Modules/PropModule.cs
vendored
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user