标签: three.js
是否可以动态更改Threejs中材质的alphaTest?
答案 0 :(得分:2)
您可以动态更改alphaTest,但还需要设置needsUpdate标记:
alphaTest
needsUpdate
material.alphaTest = 0.5 material.needsUpdate = true;
three.js r.92