stopAnimation

Stops the animation specified by its name.

stopAnimation(
	animationName: string
): Promise<void>

Parameters
Description
Type

animationName

Name of the animation we want to stop.

string

Usage:

await modelApi.stopAnimation('goUp');

Last updated