CollidersGetSqrDistanceToPart Method |
Returns the minimum square distance to the nearest point on the part's collider surface.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.2.5 (in KSPDev_Utils.2.5.dll) Version: 2.5 for KSP v1
Syntaxpublic static float? GetSqrDistanceToPart(
Vector3 point,
Part part,
Func<Collider, bool> filterFn = null
)
Request Example
View SourceParameters
- point
- Type: UnityEngineVector3
The reference point to find distance for. - part
- Type: (Default Namespace)Part
The part to check for. - filterFn (Optional)
- Type: SystemFuncCollider, Boolean
The filter function to apply to every collider. Return false from it to sklip the
collider in the following checks.
Return Value
Type:
NullableSingleThe square distance or
null if no colliders found.
RemarksThis method skips triggers and inactive colliders.
See Also