瀏覽代碼
Update rmodels.c
resolves segfault with missing bone weights or bone IDs
pull/4635/head
Jett
3 月之前
committed by
GitHub
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: B5690EEEBB952194
共有
1 個文件被更改,包括
2 次插入 和
0 次删除
-
src/rmodels.c
|
|
@ -2286,6 +2286,8 @@ void UpdateModelAnimationBones(Model model, ModelAnimation anim, int frame) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if ((mesh.boneWeights==NULL) || (mesh.boneIds==NULL)) continue; // skip if missing bone data, causes segfault without on some models |
|
|
|
|
|
|
|
// Update all bones and boneMatrices of first mesh with bones. |
|
|
|
for (int boneId = 0; boneId < anim.boneCount; boneId++) |
|
|
|
{ |
|
|
|