This commit is contained in:
Noah Pilarski 2025-04-19 00:08:33 -04:00
parent 07da949591
commit 781bb64e85
2 changed files with 2 additions and 4 deletions

View File

@ -142,8 +142,6 @@ namespace NewHorizons.Components.Volumes
public float deceleration;
public bool decelerated;
public TrackedBody(OWRigidbody body, Detector.Name name, float deceleration)
{
this.body = body;

View File

@ -14,13 +14,13 @@ namespace NewHorizons.External.Modules.Volumes.VolumeInfos
public float maxSpeed = 10f;
/// <summary>
///
/// The distance from the outside of the volume that the limiter slows you down to max speed at.
/// </summary>
[DefaultValue(100f)]
public float stoppingDistance = 100f;
/// <summary>
///
/// The maximum angle (in degrees) between the direction the incoming object is moving relative to the volume's center and the line from the object toward the center of the volume, within which the speed limiter will activate.
/// </summary>
[DefaultValue(60f)]
public float maxEntryAngle = 60f;