Skip to content

Commit

Permalink
Fixed old parameter names in out-of-line Recast function documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamboree committed Jan 7, 2024
1 parent c393f05 commit b2d8fa9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Docs/Extern/Recast_api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -650,29 +650,29 @@ if (((flags >> 2) & 0x3) != 0)
}
@endcode

@fn void rcSetCon(rcCompactSpan &s, int dir, int i)
@fn void rcSetCon(rcCompactSpan &span, int direction, int neighborIndex)
@par

This function is used by the build process. It is rarely of use to end users.

@see #rcCompactHeightfield, #rcCompactSpan

@fn int rcGetCon(const rcCompactSpan &s, int dir)
@fn int rcGetCon(const rcCompactSpan &span, int direction)
@par

Can be used to locate neighbor spans in a compact heightfield. See the
#rcCompactHeightfield documentation for details on its use.

@see #rcCompactHeightfield, #rcCompactSpan

@fn int rcGetDirOffsetX(int dir)
@fn int rcGetDirOffsetX(int direction)
@par

The value of @p dir will be automatically wrapped. So a value of 6 will be interpreted as 2.

See the #rcCompactHeightfield documentation for usage details.

@fn int rcGetDirOffsetY(int dir)
@fn int rcGetDirOffsetY(int direction)
@par

The value of @p dir will be automatically wrapped. So a value of 6 will be interpreted as 2.
Expand Down

0 comments on commit b2d8fa9

Please sign in to comment.