Panolens JS不将点输出到控制台

时间:2018-07-26 02:17:43

标签: three.js

使用Panolens JS,试图在控制台中输出坐标,但是它不适用于我。我在按住CTRL的同时拖动鼠标,没有任何显示。有人有建议吗?

<script src="https://pchen66.github.io/js/three/three.min.js"></script>
<script src="https://pchen66.github.io/js/panolens/panolens.min.js"></script>

<script>

  var panorama, viewer;

  panorama = new PANOLENS.ImagePanorama( './img/test.jpg' );

  viewer = new PANOLENS.Viewer({output: 'console'});

  viewer.add( panorama );

</script>

Image is loading fine. I also have another demo where I added a hotspot to random point and it works fine too.

1 个答案:

答案 0 :(得分:0)

我知道这是一个老问题,但是我有完全相同的问题,请确保在您的查看器选项中添加output: 'console',以在浏览器控制台中输出光线投射位置。