瀏覽代碼

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

pull/4120/head
VitoTringolo 6 月之前
committed by GitHub
父節點
當前提交
5b8efd68ba
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: B5690EEEBB952194
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c 查看文件

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

Loading…
取消
儲存