【发布时间】:2015-12-31 16:50:28
【问题描述】:
我正在开发地形生成器,但我无法弄清楚如何制作颜色。我希望能够生成一个占据我整个 PlaneGeometry 的图像。我的问题是如何根据我的高度图创建一个覆盖整个 PlaneGeometry(没有环绕)的图像?我可以想到一种方法,但我不确定它是否会完全覆盖 PlaneGeometry,而且效率会非常低。我会用画布上的颜色在二维视图中绘制它。然后我将画布转换为纹理这是最好/唯一的方法吗?
更新:使用 DataTexture,我遇到了一些错误。我完全不知道我哪里出错了。这是我得到的错误:WebGL: drawElements: texture bound to texture unit 0 is not renderable. It maybe non-power-of-2 and have incompatible texture filtering or is not 'texture complete'. Or the texture is Float or Half Float type with linear filtering while OES_float_linear or OES_half_float_linear extension is not enabled.
DataTexture 和 PlaneGeometry 的大小都是 512^2。我该怎么做才能解决这个问题?
这是我使用的一些代码:
编辑:我修好了。这是我使用的工作代码。
function genDataTexture(){
//Set the size.
var dataMap = new Uint8Array(1 << (Math.floor(Math.log(map.length * map[0].length * 4) / Math.log(2))));
/* ... */
//Set the r,g,b for each pixel, color determined above
dataMap[count++] = color.r;
dataMap[count++] = color.g;
dataMap[count++] = color.b;
dataMap[count++] = 255;
}
var texture = new THREE.DataTexture(dataMap, map.length, map[0].length, THREE.RGBAFormat);
texture.needsUpdate = true;
return texture;
}
/* ... */
//Create the material
var material = new THREE.MeshBasicMaterial({map: genDataTexture()});
//Here, I mesh it and add it to scene. I don't change anything after this.
【问题讨论】:
标签: javascript canvas three.js terrain