isFree

fun isFree(query: Vector3, ignoreOwners: Set<Any> = emptySet()): Boolean(source)

Determines whether a specific point in the 3D grid is free, considering the proximity to other points and optionally ignoring specified owners.

Return

true if the point is considered free or not occupied; otherwise, false.

Parameters

query

The Vector3 representing the point to check for availability.

ignoreOwners

A set of owners to ignore during the proximity check. Default is an empty set.