Navigation
API > API/Plugins > API/Plugins/GeometryCollectionNodes
| Name | EProximityContactFilteringMethodEnum |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/GeometryCollectionPlugin/Source/GeometryCollectionNodes/Public/Dataflow/GeometryCollectionNodes.h |
| Include Path | #include "Dataflow/GeometryCollectionNodes.h" |
Syntax
enum EProximityContactFilteringMethodEnum
{
Dataflow_ProximityContactFilteringMethod_ProjectedBoundsOverlap,
Dataflow_ProximityContactFilteringMethod_ConvexHullSharp,
Dataflow_ProximityContactFilteringMethod_ConvexHullArea,
Dataflow_Max,
}
Values
| Name | Remarks |
|---|---|
| Dataflow_ProximityContactFilteringMethod_ProjectedBoundsOverlap | Rejects proximity if the bounding boxes do not overlap by more than Contact Threshold centimeters in any major axis direction (or at least half the max possible). |
| Dataflow_ProximityContactFilteringMethod_ConvexHullSharp | Rejects proximity if the intersection of convex hulls (allowing for optional offset) follows a sharp, thin region which is not wider than Contact Threshold centimeters (or at least half the max possible). |
| Dataflow_ProximityContactFilteringMethod_ConvexHullArea | Rejects proximity if the surface area of the intersection of convex hulls (allowing for optional offset) is smaller than Contact Threshold squared (or at least half the max possible). |
| Dataflow_Max | 256th entry |