本文介绍了自动移动相机A帧js的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用a-frame js创建平面游览.我想自动移动相机.目前我正在使用鼠标进行操作.有人可以帮我吗?
I am creating flat tour using a-frame js . I wanted to move camera automatically.currently I am doing that using mouse .can anyone help me?
推荐答案
要在A-Frame中进行补间,您可能会使用a-animation
系统:
To do tweening in A-Frame, you'll probably use the a-animation
system:
<a-entity camera position="0 1.6 0">
<a-animation attribute="position"
dur="2000"
easing="linear"
to="0 1.6 -10"></a-animation>
</a-entity>
JSFiddle. To customize this, see the animation documentation.
这篇关于自动移动相机A帧js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!