如何设置隔离的颜色或透明度?
How do I set the color or transparency of the isolated?
我已经隔离了这张图片中的一些元素,但是隔离的元素在这个背景中很难看清,如何设置隔离元素的颜色或透明度?谢谢
Here's what it looks like in the background
使用getIsolatedNodes获取当前孤立节点的ID数组。
那么我们可以这样操作:
_viewer.setColorMaterial(_viewer.getIsolatedNodes(),0xff0000);
setThemingColor
可以帮助您识别幽灵物体。但透明度仍然有效。
是这样的:
viewer.setThemingColor(<dbid>, new THREE.Vector4(1, 0, 0, 1), model, true)
会将幽灵对象涂成红色。
然后你可以使用viewer.clearThemingColors(model)
去除颜色。
我已经隔离了这张图片中的一些元素,但是隔离的元素在这个背景中很难看清,如何设置隔离元素的颜色或透明度?谢谢 Here's what it looks like in the background
使用getIsolatedNodes获取当前孤立节点的ID数组。
那么我们可以这样操作:
_viewer.setColorMaterial(_viewer.getIsolatedNodes(),0xff0000);
setThemingColor
可以帮助您识别幽灵物体。但透明度仍然有效。
是这样的:
viewer.setThemingColor(<dbid>, new THREE.Vector4(1, 0, 0, 1), model, true)
会将幽灵对象涂成红色。
然后你可以使用viewer.clearThemingColors(model)
去除颜色。