/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

  1. package away3d.animators.data
  2. {
  3. /**
  4. * Options for setting the animation mode of a vertex animator object.
  5. *
  6. * @see away3d.animators.VertexAnimator
  7. */
  8. public class VertexAnimationMode
  9. {
  10. /**
  11. * Animation mode that adds all outputs from active vertex animation state to form the current vertex animation pose.
  12. */
  13. public static const ADDITIVE:String = "additive";
  14. /**
  15. * Animation mode that picks the output from a single vertex animation state to form the current vertex animation pose.
  16. */
  17. public static const ABSOLUTE:String = "absolute";
  18. }
  19. }