mirror of https://github.com/raysan5/raylib
Update models.c
fix bug with GenMeshPlane() creating too many vertices/texcoords/normals for the plane mesh
This commit is contained in:
parent
dfb8837c46
commit
9f1489dc1d
|
@ -717,7 +717,7 @@ Mesh GenMeshPlane(float width, float length, int resX, int resZ)
|
|||
resZ++;
|
||||
|
||||
// Vertices definition
|
||||
int vertexCount = resX*resZ*6; // 6 vertex by quad
|
||||
int vertexCount = resX*resZ; // vertices get reused for the faces
|
||||
|
||||
Vector3 *vertices = (Vector3 *)malloc(vertexCount*sizeof(Vector3));
|
||||
for (int z = 0; z < resZ; z++)
|
||||
|
|
Loading…
Reference in New Issue