gonav icon indicating copy to clipboard operation
gonav copied to clipboard

A Source Engine navigation mesh file parser written in Go.

Results 2 gonav issues
Sort by recently updated
recently updated
newest added

The parser does not actually parse custom data. These lines in parser.go: ``` // Skip passed some unknown data var garbageCount byte p.read(&garbageCount) p.advanceBytes(int(garbageCount) * 14) ``` Actually skips over...

The navmesh file contains connections in the order +x, +y, -x, -y (counter-clockwise), or east, north, west, south. However, `nav_compass 1` shows a compass with NESW going counterclockwise (:-1:), so...