addAnimationComponent method

Future addAnimationComponent()

An entity will only be animatable after an animation component is attached. Any calls to playAnimation/setBoneAnimation/setMorphAnimation will have no visual effect until addAnimationComponent has been called on the instance.

Implementation

Future addAnimationComponent() async {
  throw UnimplementedError();
}