例如,一个盒子应该是混合模式,但是当它在框架调试检查器中完美运行时,它在 8thwall WebAR 相机中不起作用,因为“相机”平面也会在一秒钟内变成白色。
这可以解决吗?
最终变成了全白,
我正在使用 8thwall 示例中的“修改材料”代码
<a-scene
xrweb="disableWorldTracking: true"
xrextras-almost-there
xrextras-loading
xrextras-runtime-error>
AFRAME.registerComponent('modify-materials', {
init: function() {
...
if (node.name.indexOf('p_TBSPart') !== -1) {
node.material.transparent = true;
//node.material.depthWrite: false;
node.material.blending = THREE.AdditiveBlending;
console.log("blend:" + node.material.blending+";<br/>");
} else {
node.material.transparent = false;
node.material.blending = THREE.NormalBlending;
console.log("b_:" + node.material.blending+";<br/>");
}
..
</a-scene>
谢谢
-- TBSFred