当前位置:   article > 正文

VUE2+THREE.JS点击事件_vue2 three点击

vue2 three点击

1.增加监听点击事件

renderer.domElement.addEventListener("click", this.onClick, false);
注:初始化render时监听
在这里插入图片描述

2.点击事件实现

onClick(event) {
	const raycaster = new THREE.Raycaster();
	const mouse = new THREE.Vector2();
	// 计算鼠标或触摸点的位置
	mouse.x = (event.clientX / this.$refs.draw.offsetWidth) * 2 - 1;
	mouse.y = -(event.clientY / this.$refs.draw.offsetHeight) * 2 + 1;
	// 更新射线   注意——> camera 是相机   定义到data里的
	raycaster.setFromCamera(mouse, camera);
	// 计算与所有对象的交点
	const intersects = raycaster.intersectObjects(scene.children, true);
	
	if (intersects.length > 0) {
	    //可以打印一下,intersects[0].object 是点击的设备模型信息		
	}
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

3.记得关闭页面时 销毁此监听事件

renderer.domElement.addEventListener("click", null, false); //remove listener to render

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/121592
推荐阅读
相关标签
  

闽ICP备14008679号