From e33fe1823f07161eba11dffe191a16be33b6e2cd Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Fri, 3 Feb 2023 13:52:01 -0800 Subject: [PATCH] doc --- NewHorizons/External/Modules/PropModule.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NewHorizons/External/Modules/PropModule.cs b/NewHorizons/External/Modules/PropModule.cs index aca1f56a..23b0d784 100644 --- a/NewHorizons/External/Modules/PropModule.cs +++ b/NewHorizons/External/Modules/PropModule.cs @@ -238,13 +238,14 @@ namespace NewHorizons.External.Modules /// /// The mass of the physics object. + /// For reference, the player has a mass of 0.001 and the probe has a mass of 0.0001 /// [DefaultValue(1f)] public float physicsMass = 1f; /// /// The radius that the added sphere collider will use for physics collision. /// - [DefaultValue(0.5f)] public float physicsRadius = 0.5f; + [DefaultValue(1f)] public float physicsRadius = 1f; } [JsonObject]