Parcourir la source

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

pull/4120/head
VitoTringolo il y a 6 mois
committed by GitHub
Parent
révision
5b8efd68ba
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: B5690EEEBB952194
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c Voir le fichier

@ -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;

Chargement…
Annuler
Enregistrer