GridNav
In-game navigation API
IsTraversable(pos: Vector
, flag [?]
: number
): bool
Vector
, flag [?]
: number
): bool
Name
Type
Description
pos
Vector
position to check
flag [?]
number
flag to check. No idea what it is (default: 1)
Returns true
if the world position is traversable.
BuildPath(start: Vector
, end: Vector
, noTreeMode [?]
: boolean
): table
Vector
, end: Vector
, noTreeMode [?]
: boolean
): table
Name
Type
Description
start
Vector
position to start
end
Vector
position to end
noTreeMode [?]
boolean
flag to ignore trees (default: false)
Build path from start to end. Returns the 1-based indexed table with builded positions.
Example
Last updated