[c] Closes #2157, missing break in deform timeline apply.

This commit is contained in:
Mario Zechner 2022-09-26 10:03:57 +02:00
parent aeacf6e502
commit ef7eb1cb07

View File

@ -1870,6 +1870,7 @@ void _spDeformTimeline_apply(
/* Vertex positions or deform offsets, with alpha. */
for (i = 0; i < vertexCount; i++)
deformArray[i] += (lastVertices[i] - deformArray[i]) * alpha;
break;
case SP_MIX_BLEND_ADD:
vertexAttachment = SUB_CAST(spVertexAttachment, slot->attachment);
if (!vertexAttachment->bones) {