Browse Source

Update rmodels.c

resolves segfault with missing bone weights or bone IDs
pull/4635/head
Jett 3 months ago
committed by GitHub
parent
commit
130fb2a993
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/rmodels.c

+ 2
- 0
src/rmodels.c View File

@ -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. // Update all bones and boneMatrices of first mesh with bones.
for (int boneId = 0; boneId < anim.boneCount; boneId++) for (int boneId = 0; boneId < anim.boneCount; boneId++)
{ {

Loading…
Cancel
Save