FQueryOptions

Standard shared options for all mesh spatial queries

Choose your operating system:

Windows

macOS

Linux

References

Module

GeometryCore

Header

/Engine/Source/Runtime/GeometryCore/Public/Spatial/SpatialInterfaces.h

Include

#include "Spatial/SpatialInterfaces.h"

Syntax

struct FQueryOptions

Remarks

Standard shared options for all mesh spatial queries

Variables

Name Description

Public variable

bool

 

bAllowUnsafeModifiedMeshQueries

If true, then the IMeshSpatial may allow queries even when the underlying mesh has been modified without updating the queried structure.

Public variable

double

 

MaxDistance

Maximum search distance / hit distance, where applicable

Public variable

TFunction< bool...

 

TriangleFilterF

If non-null, only triangle IDs that pass this filter (i.e. filter is true) are considered

Constructors

Name Description

Public function

FQueryOptions()

Public function

FQueryOptions

(
    TFunction< bool> TriangleFilte...
)

Public function

FQueryOptions

(
    double MaxDistance,
    TFunction< bool> TriangleFilte...
)