在A-Frame中动态更改相机

时间:2017-03-02 21:17:46

标签: aframe

我尝试的东西可能会疯狂。想法是,鼠标悬停在球体上时,用图像更改立体相机。默认摄像头将是立体摄像头,因此在鼠标离开时,我所要做的就是将主摄像头设置为活动状态并关闭辅助摄像头。是否可以在运行时设置相机?有帮助吗?提前谢谢。

    <a-assets>
        <img id="image1" src="image1.png"/>
        <img id="image2" src="image2.jpg"/>
    </a-assets>
    <a-camera >
        <a-image position="0 0 -1" width="0.2" height="0.2" src="#image1">
    </a-camera>

    <a-camera stereocam position="-47 0 -35" >
        <a-cursor fuse="true" color="black" position="0 0 -1" timeout="500" src="#warning">
        </a-cursor>
    </a-camera>

1 个答案:

答案 0 :(得分:1)

Set the active camera.

document.querySelector('#camera2').setAttribute('camera', 'active', true);