@awayjs/graphics
Version:
AwayJS graphics classes
16 lines • 550 B
TypeScript
/**
* Options for setting the animation mode of a vertex animator object.
*
* @see away.animators.VertexAnimator
*/
export declare class VertexAnimationMode {
/**
* Animation mode that adds all outputs from active vertex animation state to form the current vertex animation pose.
*/
static ADDITIVE: string;
/**
* Animation mode that picks the output from a single vertex animation state to form the current vertex animation pose.
*/
static ABSOLUTE: string;
}
//# sourceMappingURL=VertexAnimationMode.d.ts.map