I've done a mesh with libgdx and I'm trying to fill the mesh with some color.

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);

}

Which render paremeter shall I use? I'm using PerspectiveCamera.

link|improve this question
FYI, your vertices and indices do not make a cube. – Shivan Dragon Mar 13 at 13:03
feedback

2 Answers

See http://code.google.com/p/libgdx-users/wiki/MeshColor. You can either go with a default color for a whole model, or a per-vertex color.

You've got per-vertex color information in your example, so to change the color you need to change the vertices, and re-invoke setVertices on the mesh.

link|improve this answer
I've resolved the problem, I've got a cube mesh now, but I want to add a image texture on it. I've got the Texture loaded correctly, but have no Idea how to put it on my cube, in the top face. The texture is only a image. I render now using : render(GL10.GL_TRIANGLES); One other question is: Is there any shader avaliable to work in 3D platform? Thanks – user1187691 Feb 9 at 17:51
Please ask a new question (after searching to make sure it hasn't already been asked, of course). – P.T. Feb 9 at 23:00
feedback

For drawing images in the cube you have to add following two lines of code in your render method before drawing mesh on the screen.

Gdx.graphics.getGL10().glEnable(GL10.GL_TEXTURE_2D);
texture.bind();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.