0

我已经用 libgdx 做了一个网格,我正在尝试用一些颜色填充网格。

create() {
         if (bigMesh == null) {
            bigMesh = new Mesh(true, 8, 8, 
                    new VertexAttribute(Usage.Position, 3, "a_position"),
                    new VertexAttribute(Usage.ColorPacked, 4, "a_color"));

            bigMesh.setVertices(new float[] {
                    0, -0.5f, -4, Color.toFloatBits(255, 0, 0, 255),
                    1, -0.5f, -4, Color.toFloatBits(255, 0, 0, 255),
                    1, 0.5f, -4, Color.toFloatBits(255, 0, 0, 255),
                    0, 0.5f, -4, Color.toFloatBits(255, 0, 0, 255),

                    1, 0.5f, -3, Color.toFloatBits(0, 255, 0, 255),
                    1, -0.5f, -3, Color.toFloatBits(0, 255, 0, 255),
                    0, -0.5f, -3, Color.toFloatBits(0, 255, 0, 255),
                    0, 0.5f,-3, Color.toFloatBits(0, 255, 0, 255)
                   });   
            bigMesh.setIndices(new short[] { 0, 1, 2, 3,4,5,6,7});
        }
}

render(){
        Gdx.gl.glClearColor(0,0,0,1);
        Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
        bigMesh.render(GL10.GL_TRIANGLE_STRIP);
}

我应该使用哪个渲染参数?我正在使用透视相机。

4

2 回答 2

0

要在立方体中绘制图像,您必须在渲染方法中添加以下两行代码,然后才能在屏幕上绘制网格。

Gdx.graphics.getGL10().glEnable(GL10.GL_TEXTURE_2D);
texture.bind();
于 2012-04-05T13:03:25.130 回答
0

请参阅http://code.google.com/p/libgdx-users/wiki/MeshColor。您可以使用整个模型的默认颜色,也可以使用每个顶点的颜色。

您在示例中获得了每个顶点的颜色信息,因此要更改颜色,您需要更改顶点,然后setVertices在网格上重新调用。

于 2012-02-03T20:59:22.123 回答