Build Kdtree
builds a kd-tree (Kdtree
object in Blueprint) fromVector
objects.Dump Kdtree to Console
outputs the internal information ofKdtree
object to the console for debugging.Validate Kdtree
checks theKdtree
object and halts the game play if there is a incorrect in it.
Collect from Kdtree
collectsVector
objects in the sphere (center location isCenter
, radius isRadius
).Collect from Kdtree
also returns indicies of list that is input argument ofBuild Kdtree
.- If you don't use
Kdtree
any more, you can destroyKdtree
object and free memories byClear Kdtree
.
Build Kdtree Async
is an asynchronous version ofBuild Kdtree
.- All synchronous versions (
Collect from Kdtree
,Dump Kdtree to Console
,Validate Kdtree
andClear Kdtree
) can be applicatable toKdtree
object afterBuild Kdtree Async
is completed.
- All synchronous versions (
Collect from Kdtree Async
is an asynchronous version ofCollect from Kdtree
.