forked from mirror/DotRecast
typo
This commit is contained in:
parent
5b20414987
commit
262a101921
|
@ -96,21 +96,12 @@ namespace DotRecast.Detour
|
|||
/// @}
|
||||
/// @name General Configuration Attributes
|
||||
/// @{
|
||||
public float walkableHeight;
|
||||
public float walkableHeight; // < The agent height. [Unit: wu]
|
||||
public float walkableRadius; // < The agent radius. [Unit: wu]
|
||||
public float walkableClimb; // < The agent maximum traversable ledge. (Up/Down) [Unit: wu]
|
||||
public float cs; // < The xz-plane cell size of the polygon mesh. [Limit: > 0] [Unit: wu]
|
||||
public float ch; // < The y-axis cell height of the polygon mesh. [Limit: > 0] [Unit: wu]
|
||||
|
||||
/// < The agent height. [Unit: wu]
|
||||
public float walkableRadius;
|
||||
|
||||
/// < The agent radius. [Unit: wu]
|
||||
public float walkableClimb;
|
||||
|
||||
/// < The agent maximum traversable ledge. (Up/Down) [Unit: wu]
|
||||
public float cs;
|
||||
|
||||
/// < The xz-plane cell size of the polygon mesh. [Limit: > 0] [Unit: wu]
|
||||
public float ch;
|
||||
|
||||
/// < The y-axis cell height of the polygon mesh. [Limit: > 0] [Unit: wu]
|
||||
/// True if a bounding volume tree should be built for the tile.
|
||||
/// @note The BVTree is not normally needed for layered navigation meshes.
|
||||
public bool buildBvTree;
|
||||
|
|
Loading…
Reference in New Issue