Przeglądaj źródła

Updated models.c (#1871)

- fixed issue where vertex positions being passed in place of vertex normals.
pull/1874/head
GoldenThumbs 3 lat temu
committed by GitHub
rodzic
commit
59acb6dbea
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/models.c

+ 1
- 1
src/models.c Wyświetl plik

@ -860,7 +860,7 @@ void UploadMesh(Mesh *mesh, bool dynamic)
if (mesh->normals != NULL)
{
// Enable vertex attributes: normals (shader-location = 2)
void *normals = mesh->animNormals != NULL ? mesh->animNormals : mesh->vertices;
void *normals = mesh->animNormals != NULL ? mesh->animNormals : mesh->normals;
mesh->vboId[2] = rlLoadVertexBuffer(normals, mesh->vertexCount*3*sizeof(float), dynamic);
rlSetVertexAttribute(2, 3, RL_FLOAT, 0, 0, 0);
rlEnableVertexAttribute(2);

Ładowanie…
Anuluj
Zapisz