使用 Tween 为相机设置动画 [英] Using Tween to animate a camera

查看:29
本文介绍了使用 Tween 为相机设置动画的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I'm trying to ease camera rotation to look at a selected object in a graph.

到目前为止,我有

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 只是在渲染循环中调用的函数集合.我不知道我错过了什么,但我收到一个错误:

where render_loop is simply a collection of functions called in the render loop. I don't know what I'm missing, but I'm getting an error:

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

THREE.Euler: .setFromRotationMatrix() given unsupported order: NaN

推荐答案

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

You can tween the camera's orientation (or rotation), but to do so, it is simplest to tween the camera's quaternion, instead.

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

three.js r.88

这篇关于使用 Tween 为相机设置动画的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆