Sfoglia il codice sorgente

Update rmodels.c

pull/3497/head
Ray 1 anno fa
parent
commit
15142a30f5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c Vedi File

@ -3984,7 +3984,7 @@ static Model LoadOBJ(const char *fileName)
model.meshMaterial[i] = 0; // By default, assign material 0 to each mesh
// Process all mesh faces
for (unsigned int face = 0, f = meshes[i].face_offset, v = 0, vt = 0, vn = 0; face < tris; face++, f++, v += 3, vt += 2, vn += 3)
for (unsigned int face = 0, f = meshes[i].face_offset, v = 0, vt = 0, vn = 0; face < tris; face++, f++, v += 3, vt += 3, vn += 3)
{
// Get indices for the face
tinyobj_vertex_index_t idx0 = attrib.faces[f*3 + 0];

Caricamento…
Annulla
Salva