Explorar el Código

Tweak: Change check order

pull/892/head
Ray hace 5 años
padre
commit
0c60af8981
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      src/models.c

+ 3
- 3
src/models.c Ver fichero

@ -637,12 +637,12 @@ Model LoadModel(const char *fileName)
#if defined(SUPPORT_FILEFORMAT_OBJ)
if (IsFileExtension(fileName, ".obj")) model = LoadOBJ(fileName);
#endif
#if defined(SUPPORT_FILEFORMAT_GLTF)
if (IsFileExtension(fileName, ".gltf") || IsFileExtension(fileName, ".glb")) model = LoadGLTF(fileName);
#endif
#if defined(SUPPORT_FILEFORMAT_IQM)
if (IsFileExtension(fileName, ".iqm")) model = LoadIQM(fileName);
#endif
#if defined(SUPPORT_FILEFORMAT_GLTF)
if (IsFileExtension(fileName, ".gltf") || IsFileExtension(fileName, ".glb")) model = LoadGLTF(fileName);
#endif
// Make sure model transform is set to identity matrix!
model.transform = MatrixIdentity();

Cargando…
Cancelar
Guardar