removeAnimationComponent method
Removes an animation component from entity
.
Implementation
@override
Future removeAnimationComponent(ThermionEntity entity) async {
_module.ccall(
"remove_animation_component",
"void",
["void*".toJS, "int".toJS].toJS,
[_sceneManager!, entity.toJS].toJS,
null);
}