better doc

This commit is contained in:
JohnCorby 2023-08-10 17:40:47 -07:00
parent a968308597
commit fb1085e7b9
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public class AddPhysics : MonoBehaviour
[Tooltip("The radius that the added sphere collider will use for physics collision.\n" +
"If there's already good colliders on the detail, you can make this 0.")]
public float Radius = 1f;
[Tooltip("If true, this detail will stay still until it bumps something.")]
[Tooltip("If true, this detail will stay still until it touches something.")]
public bool SuspendUntilImpact;
[NonSerialized]

View File

@ -76,7 +76,7 @@ namespace NewHorizons.External.Modules.Props
[DefaultValue(1f)] public float physicsRadius = 1f;
/// <summary>
/// If true, this detail will stay still until it bumps something.
/// If true, this detail will stay still until it touches something.
/// </summary>
public bool physicsSuspendUntilImpact;