Animation3DKeyframe Type
A single keyframe: a time offset (in ticks) and a bone transform matrix.
Assimp's per-channel TRS keyframes are merged into a single Matrix per bone per keyframe time during clip construction (matching raylib's ModelAnimation frame-poses). This keeps the hot-path interpolation loop simple: one lerp + one matrix multiply per bone.
Mibo