/src/away3d/animators/data/VertexAnimationMode.as
http://github.com/away3d/away3d-core-fp11 · ActionScript · 21 lines · 8 code · 2 blank · 11 comment · 0 complexity · f360217eaec771a5342222b8e662cde2 MD5 · raw file
- package away3d.animators.data
- {
-
- /**
- * Options for setting the animation mode of a vertex animator object.
- *
- * @see away3d.animators.VertexAnimator
- */
- public class VertexAnimationMode
- {
- /**
- * Animation mode that adds all outputs from active vertex animation state to form the current vertex animation pose.
- */
- public static const ADDITIVE:String = "additive";
-
- /**
- * Animation mode that picks the output from a single vertex animation state to form the current vertex animation pose.
- */
- public static const ABSOLUTE:String = "absolute";
- }
- }