【问题标题】:Using Tween to animate a camera使用 Tween 为相机设置动画
【发布时间】:2017-12-17 01:48:34
【问题描述】:

我正在尝试简化相机旋转以查看图表中的选定对象。

到目前为止,我有

fourd.render_loop.push(() => TWEEN.update());
fourd.intersect_callback = function(vertex){
    console.log(vertex);
    var camera = fourd._internals.camera;
    var start = new THREE.Euler().copy(camera.rotation);
    camera.lookAt(vertex.position);
    var end = new THREE.Euler().copy(camera.rotation);
    camera.rotation.copy(start);
    var tween = new TWEEN.Tween(camera.rotation)
        .to(end, 600)
        .easing(TWEEN.Easing.Quadratic.In)
        .start();
};

其中 render_loop 只是在渲染循环中调用的函数的集合。我不知道我错过了什么,但我收到了一个错误:

THREE.Euler: .setFromRotationMatrix() 给定不受支持的顺序:NaN

【问题讨论】:

  • 您能创建一个实时代码示例吗?

标签: javascript three.js tween.js


【解决方案1】:

您可以补间相机的方向(或旋转),但要做到这一点,最简单的方法是补间相机的四元数。

var dummy = new THREE.Camera(); // create these once and reuse
var qStart = new THREE.Quaternion();
var qEnd = new THREE.Quaternion();

. . .

// tween
var time = { t: 0 };

new TWEEN.Tween( time )
    .to( { t : 1 }, 1000 )
    .easing( TWEEN.Easing.Linear.None )
    .onStart( function() {

        dummy.position.copy( camera.position );
        dummy.lookAt( point ); // point is your target Vector3

        qStart.copy( camera.quaternion );

        qEnd.copy( dummy.quaternion );

    } )
    .onUpdate( function() {

        THREE.Quaternion.slerp( qStart, qEnd, camera.quaternion, time.t );

    } )
    .onComplete( function() {

        camera.quaternion.copy( qEnd ); // so it is exact

    } )
    .start();

three.js r.88

【讨论】:

    猜你喜欢
    • 2017-12-28
    • 2019-12-06
    • 1970-01-01
    • 2016-04-18
    • 2023-04-08
    • 1970-01-01
    • 1970-01-01
    • 2021-07-15
    • 1970-01-01
    相关资源
    最近更新 更多