stopAnimation method
Implementation
@override
Future stopAnimation(ThermionEntity entity, int animationIndex) async {
_module.ccall(
"stop_animation",
"void",
["void*".toJS, "int".toJS, "int".toJS].toJS,
[_sceneManager!, entity.toJS, animationIndex.toJS].toJS,
null);
}