【问题标题】:Create texture from Array THREE.js从 Array THREE.js 创建纹理
【发布时间】: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


    【解决方案1】:

    如果数据已经在您的 Javascript 代码中,最佳方法是使用 DataTexture -- 请参阅 https://threejs.org/docs/#api/textures/DataTexture 获取一般文档,或查看 THREE.ImageUtils.generateDataTexture() 以获取相当方便的制作方法. http://threejs.org/docs/#Reference/Extras/ImageUtils

    【讨论】:

    • 我遇到了一些错误。我在问题中添加了它们。你能告诉我哪里出错了吗?
    • 我想通了。谢谢
    • THREE.ImageUtils.generateDataTexture() 已被移除,见stackoverflow.com/questions/47782274/…
    猜你喜欢
    • 2016-04-04
    • 2014-09-23
    • 2012-01-19
    • 1970-01-01
    • 2012-09-17
    • 2013-09-22
    • 2017-10-05
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多