Hi, I have an animation that is missing parts when playing in flutter. Playing the animation in Unity works fine, which makes me suspect there could be a bug with the flutter runtime..
How to reproduce using the spine flutter example project:
- Download spine-runtimes-4.1 EsotericSoftware/spine-runtimes
- Add anim files to assets in flutter example project
- Change in the filenames and animation state in the SimpleAnimation class:
final controller = SpineWidgetController(onInitialized: (controller) {
// Set the walk animation on track 0, let it loop
controller.animationState.setAnimationByName(0, "Idle", true);
});
return Scaffold(
appBar: AppBar(title: const Text('Simple Animation')),
body: SpineWidget.fromAsset("assets/cat_banana.atlas", "assets/cat_banana.skel", controller)
);
- When playing simple animation the face and the left arm with a banana is not shown.
Animation files: