Animation.html 845 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. <h1>Animation Constants</h1>
  11. <h2>Loop Modes</h2>
  12. <code>
  13. THREE.LoopOnce
  14. THREE.LoopRepeat
  15. THREE.LoopPingPong
  16. </code>
  17. <h2>Interpolation Modes</h2>
  18. <code>
  19. THREE.InterpolateDiscrete
  20. THREE.InterpolateLinear
  21. THREE.InterpolateSmooth
  22. </code>
  23. <h2>Ending Modes</h2>
  24. <code>
  25. THREE.ZeroCurvatureEnding
  26. THREE.ZeroSlopeEnding
  27. THREE.WrapAroundEnding
  28. </code>
  29. <h2>Animation Blend Modes</h2>
  30. <code>
  31. THREE.NormalAnimationBlendMode
  32. THREE.AdditiveAnimationBlendMode
  33. </code>
  34. <h2>Source</h2>
  35. <p>
  36. [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
  37. </p>
  38. </body>
  39. </html>