removeAnimationComponent method

  1. @override
Future removeAnimationComponent(
  1. ThermionEntity entity
)
override

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);
}