getAnimationDuration method

  1. @JSExport()
JSPromise<JSNumber> getAnimationDuration(
  1. ThermionEntity entity,
  2. int animationIndex
)

Implementation

@JSExport()
JSPromise<JSNumber> getAnimationDuration(
        ThermionEntity entity, int animationIndex) =>
    viewer
        .getAnimationDuration(entity, animationIndex)
        .then((v) => v.toJS)
        .toJS;