Versions in this module Expand all Collapse all v1 v1.0.8 Aug 16, 2026 v1.0.7 Aug 16, 2026 Changes in this version + type Navigator interface + Close func() + FindPath func(mapID uint32, start, dest Point3D) (*PathResult, error) + FindRandomPath func(mapID uint32, center Point3D, radius float32) (*PathResult, error) + GetHeight func(mapID uint32, x, y, z float32) (float32, bool) + GetTerrainHeight func(mapID uint32, x, y float32) (float32, bool) + func NewEmbeddedNavigator(dataDir string) Navigator + func NewRemoteNavigator(address string) (Navigator, error) + type PathResult struct + Found bool + Points []Point3D + type Point3D struct + X float32 + Y float32 + Z float32 + func (p Point3D) DistanceTo(o Point3D) float32 + func (p Point3D) DistanceTo2D(o Point3D) float32