https://codepen.io/matelich/pen/PyRZeb
试图在透明的画布/材质上绘制白色的半透明图像。除了将其绘制为黑色的半透明图像之外,它都工作正常。
function doPaintPoint (_x, _y) {
var image3 = mesh.material.map.image;
var ctx = image3.getContext('2d');
ctx.drawImage(brushy, _x, _y);
mesh.material.map.needsUpdate = true;
mesh.material.needsUpdate = true;
}