请问要如何让构件依时间转动(动画)?

发布于 2022-09-04 22:52:58 字数 74 浏览 10 评论 0

请问有办法让一个构件在画面上像动画一样一直转动吗?

Autodesk Forge 微信讨论群 – pochao 提问

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弃爱 2022-09-11 22:52:58

您好,你可以透过 requestAnimationFramesetTimeout 这两个函数搭配来达成,请看下方示例(ES2015代码):

class RotateExt extends Autodesk.Viewing.Extension {
  constructor( viewer, options ) {
    super( viewer, options );
  }

   load() {
    this.actived = true;
    this.viewer.addEventListener( Autodesk.Viewing.SELECTION_CHANGED_EVENT, this.onSelectionChanged );
    return true;
   }

   unload() {
    this.actived = false;
    this.viewer.removeEventListener( Autodesk.Viewing.SELECTION_CHANGED_EVENT, this.onSelectionChanged );
    return true;
   }
   
   onSelectionChanged = ( event ) => {
    this.model = event.model;
    this.fragIdsArray = event.fragIdsArray;

    // 要求第一个动画 frame
    requestAnimationFrame( this.rotateHandler );
  };

  /**!
   * 关键函数
   */
  rotateHandler = () => {
    if( !this.actived ) return;

    const quaternion = new THREE.Quaternion();
    // 设置旋转量 - 依 Y 轴旋转构件 60 度
    quaternion.setFromAxisAngle( new THREE.Vector3( 0,1,0 ), Math.PI / 3 );

    const model = this.model;
    const fragIdsArray = this.fragIdsArray;

    fragIdsArray.forEach( ( fragId, idx ) => {
      const fragProxy = this.viewer.impl.getFragmentProxy( model, fragId );

      fragProxy.getAnimTransform();

      const position = new THREE.Vector3( fragProxy.position.x, fragProxy.position.y, fragProxy.position.z );
      position.applyQuaternion( quaternion );

      fragProxy.position = position;
      fragProxy.quaternion.multiplyQuaternions( quaternion, fragProxy.quaternion );

      if( idx === 0 ) {
        const euler = new THREE.Euler();
        euler.setFromQuaternion( fragProxy.quaternion, 0 );
      }

      fragProxy.updateAnimTransform();
    });

    this.viewer.impl.sceneUpdated( true );
    
    // 500毫秒后要求下一个动画 frame
    setTimeout( () => {
        requestAnimationFrame( this.rotateHandler );
    }, 500 );
  };
}

Autodesk.Viewing.theExtensionManager.registerExtension( 'Autodesk.ADN.Viewing.Extension.RotateTool', RotateExt );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文