@awayjs/graphics
Version:
AwayJS graphics classes
20 lines (19 loc) • 660 B
JavaScript
/**
* Options for setting the animation mode of a vertex animator object.
*
* @see away.animators.VertexAnimator
*/
var VertexAnimationMode = /** @class */ (function () {
function VertexAnimationMode() {
}
/**
* Animation mode that adds all outputs from active vertex animation state to form the current vertex animation pose.
*/
VertexAnimationMode.ADDITIVE = 'additive';
/**
* Animation mode that picks the output from a single vertex animation state to form the current vertex animation pose.
*/
VertexAnimationMode.ABSOLUTE = 'absolute';
return VertexAnimationMode;
}());
export { VertexAnimationMode };