使用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>
答案 0 :(得分:0)
我知道这是一个老问题,但是我有完全相同的问题,请确保在您的查看器选项中添加output: 'console'
,以在浏览器控制台中输出光线投射位置。