Explorar el Código

[rmodels] Return true if no need to interpolate to avoid log flooding (#4118)

pull/4120/head
VitoTringolo hace 6 meses
cometido por GitHub
padre
commit
5b8efd68ba
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c Ver fichero

@ -5649,7 +5649,7 @@ static bool GetPoseAtTimeGLTF(cgltf_interpolation_type interpolationType, cgltf_
}
// Constant animation, no need to interpolate
if (FloatEquals(tend, tstart)) return false;
if (FloatEquals(tend, tstart)) return true;
float duration = fmaxf((tend - tstart), EPSILON);
float t = (time - tstart)/duration;

Cargando…
Cancelar
Guardar