LoadModelAnimations method
Load model animations from file
Implementation
List<ModelAnimationD> LoadModelAnimations(
String fileName,
) => run(
() => _debugLabels.LoadModelAnimations(fileName),
() {
final animCount = $.Int$.Ref1();
final anims = _flat.LoadModelAnimations(
$.String$.ValueOrNull(fileName),
animCount,
);
return anims.readArray(animCount.value);
},
);