forked from mirror/DotRecast
update comment
This commit is contained in:
parent
1bf0a88492
commit
dfbd1b2cae
|
@ -22,33 +22,22 @@ namespace DotRecast.Detour
|
||||||
{
|
{
|
||||||
public class DtMeshData
|
public class DtMeshData
|
||||||
{
|
{
|
||||||
/** The tile header. */
|
public DtMeshHeader header; //< The tile header.
|
||||||
public DtMeshHeader header;
|
public DtPoly[] polys; //< The tile polygons. [Size: dtMeshHeader::polyCount]
|
||||||
|
public float[] verts; //< The tile vertices. [(x, y, z) * dtMeshHeader::vertCount]
|
||||||
|
public DtPolyDetail[] detailMeshes; //< The tile's detail sub-meshes. [Size: dtMeshHeader::detailMeshCount]
|
||||||
|
|
||||||
/** The tile vertices. [Size: MeshHeader::vertCount] */
|
/// The detail mesh's unique vertices. [(x, y, z) * dtMeshHeader::detailVertCount]
|
||||||
public float[] verts;
|
|
||||||
|
|
||||||
/** The tile polygons. [Size: MeshHeader::polyCount] */
|
|
||||||
public DtPoly[] polys;
|
|
||||||
|
|
||||||
/** The tile's detail sub-meshes. [Size: MeshHeader::detailMeshCount] */
|
|
||||||
public DtPolyDetail[] detailMeshes;
|
|
||||||
|
|
||||||
/** The detail mesh's unique vertices. [(x, y, z) * MeshHeader::detailVertCount] */
|
|
||||||
public float[] detailVerts;
|
public float[] detailVerts;
|
||||||
|
|
||||||
/**
|
/// The detail mesh's triangles. [(vertA, vertB, vertC, triFlags) * dtMeshHeader::detailTriCount].
|
||||||
* The detail mesh's triangles. [(vertA, vertB, vertC) * MeshHeader::detailTriCount] See DetailTriEdgeFlags and
|
/// See dtDetailTriEdgeFlags and dtGetDetailTriEdgeFlags.
|
||||||
* NavMesh::getDetailTriEdgeFlags.
|
|
||||||
*/
|
|
||||||
public int[] detailTris;
|
public int[] detailTris;
|
||||||
|
|
||||||
/**
|
/// The tile bounding volume nodes. [Size: dtMeshHeader::bvNodeCount]
|
||||||
* The tile bounding volume nodes. [Size: MeshHeader::bvNodeCount] (Will be null if bounding volumes are disabled.)
|
/// (Will be null if bounding volumes are disabled.)
|
||||||
*/
|
|
||||||
public DtBVNode[] bvTree;
|
public DtBVNode[] bvTree;
|
||||||
|
|
||||||
/** The tile off-mesh connections. [Size: MeshHeader::offMeshConCount] */
|
public DtOffMeshConnection[] offMeshCons; //< The tile off-mesh connections. [Size: dtMeshHeader::offMeshConCount]
|
||||||
public DtOffMeshConnection[] offMeshCons;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue