UpdateModelAnimation method
Implementation
void UpdateModelAnimation(
ModelD model,
ModelAnimationD anim,
num frame,
) => run(
() => 'UpdateModelAnimation($model, $anim, $frame)',
() => rl.Temp.Model$.RefUpdate1(model,
(pm) => rl.Temp.ModelAnimation$.RefUpdate1(anim,
(pma) => rl.Core.UpdateModelAnimation(
pm.ref,
pma.ref,
frame.toInt(),
),
),
),
);