项目作者: REIGNjs

项目描述 :
Uses TweenJs to create a Catmull-Rom curve to move a 3d object along. Can be used to pause between several paths.
高级语言: JavaScript
项目地址: git://github.com/REIGNjs/three-tween-path.git
创建时间: 2021-06-13T20:49:47Z
项目社区:https://github.com/REIGNjs/three-tween-path

开源协议:MIT License

下载


Three Tween Path

This module uses TweenJs to create a smooth path (Catmull-Rom) through the given path data (includes vertices, duration and delay between segments).

Install using npm:

  1. npm i three-tween-path

Usage

Import the module and your path data

  1. import * as THREE from "three";
  2. import TWEEN from "@tweenjs/tween.js";
  3. import * as TweenRoute from "three-tween-path";
  4. import { samplePath } from './samplePath';

Create a MultiTween with a given 3d object and the path data

  1. let myTween = TweenRoute.MultiTweenPath(my3dObject, samplePath);
  2. myTween.start();

Run the TweenJs update function to keep your tween updated

  1. const animate = () => {
  2. requestAnimationFrame(animate);
  3. renderer.render(scene, camera);
  4. //update tween
  5. TWEEN.update();
  6. };

Callbacks

Use callbacks according to the implementation in tweenjs. A callback can be implemented like this:

  1. const onSegmentStart = () => {
  2. //could be used to start a running animation or something similar
  3. console.log("Segment start!");
  4. }
  5. const onSegmentEnd = () => {
  6. //could stop the running animation and return to an idle animation
  7. console.log("Segment end!");
  8. }
  9. let sampleTween = TweenRoute.MultiTweenPath(cone, samplePath, onSegmentStart, onSegmentEnd);
  10. sampleTween.start();

One callback is run at the beginning of the segment and the other at the end of a segment. Use this to halt any animations or run different kind of tasks.

Path Data

The path data necessary for the module is in the following structure:

  1. const pathData = [
  2. {
  3. path: [
  4. {x: -40, y: 30, z: -17},
  5. {x: -43, y: 29, z: -16},
  6. {x: -42, y: 29, z: -15} //copy to next path for consistency
  7. ],
  8. delay: 2000,
  9. duration: 5000
  10. },
  11. {
  12. path: [
  13. {x: -42, y: 29, z: -15}, //be sure to include the last vector of the previous path
  14. {x: -41, y: 29.25, z: -15},
  15. {x: -18, y: 28, z: -3}
  16. ],
  17. delay: 2000,
  18. duration: 10000
  19. },
  20. {
  21. path: [
  22. {x: -18, y: 28, z: -3},
  23. {x: -16.5, y: 28, z: -5},
  24. {x: -6, y: 28, z: -6}
  25. ],
  26. delay: 1000,
  27. duration: 8000
  28. }
  29. ]

Always include the last vertices of the previous path in the subsequent path to avoid choppy transitions.
The duration and delay parameters are measured in milliseconds.

Example

Clone the repository and run

  1. npm i
  2. npm start

The example is available under localhost:3000
image