0

我正在尝试创建几个具有 2D 纹理的 3D 块,但由于立方体的某些面对其他人是透明的,因此无法正常工作。这是我定义块的类的一部分代码:

    public void Render(){

            try {
        this.texture = TextureLoader.getTexture("PNG", new FileInputStream(new File("res/gold1.png")));
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    squareDisplayList = glGenLists(1);
    glNewList(squareDisplayList, GL_COMPILE);
    {

        glBegin(GL_QUADS);
        //trás
        glTexCoord2f(1, 0);
        glVertex3f(x2, y1, z1);
        glTexCoord2f(1, 1);
        glVertex3f(x2, y2, z1);
        glTexCoord2f(0, 1);
        glVertex3f(x1, y2, z1);
        glTexCoord2f(0, 0);
        glVertex3f(x1, y1, z1);

        //cima
        glTexCoord2f(1, 0);
        glVertex3f(x2, y1, z2);
        glTexCoord2f(1, 1);
        glVertex3f(x1, y1, z2);
        glTexCoord2f(0, 1);
        glVertex3f(x1, y1, z1);
        glTexCoord2f(0, 0);
        glVertex3f(x2, y1, z1);

        //baixo
        glTexCoord2f(1, 0);
        glVertex3f(x2, y2, z1);
        glTexCoord2f(1, 1);
        glVertex3f(x2, y2, z2);
        glTexCoord2f(0, 1);
        glVertex3f(x1, y2, z2);
        glTexCoord2f(0, 0);
        glVertex3f(x1, y2, z1);

        //direito
        glTexCoord2f(1, 0);
        glVertex3f(x2, y1, z2);
        glTexCoord2f(1, 1);
        glVertex3f(x2, y2, z2);
        glTexCoord2f(0, 1);
        glVertex3f(x2, y2, z1);
        glTexCoord2f(0, 0);
        glVertex3f(x2, y1, z1);

        //esquerdo
        glTexCoord2f(1, 0);
        glVertex3f(x1, y1, z2);
        glTexCoord2f(1, 1);
        glVertex3f(x1, y2, z2);
        glTexCoord2f(0, 1);
        glVertex3f(x1, y2, z1);
        glTexCoord2f(0, 0);
        glVertex3f(x1, y1, z1);

        //frente
        glTexCoord2f(1, 0);
        glVertex3f(x2, y1, z2);
        glTexCoord2f(1, 1);
        glVertex3f(x2, y2, z2);
        glTexCoord2f(0, 1);
        glVertex3f(x1, y2, z2);
        glTexCoord2f(0, 0);
        glVertex3f(x1, y1, z2);
        glEnd();

    }
    glEndList();

}

 public void Draw(){

    glCallList(squareDisplayList);

}

这是我称之为几个块的类:

    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    gluPerspective((float) 30, 880f / 580f, 0.001f,100);
    glMatrixMode(GL_MODELVIEW);
    glEnable(GL_TEXTURE_2D);

    for(int ix = 0; ix < world_width; ix++){

        for(int iy = 0; iy < world_hight; iy++){    

            for(int iz = 0; iz < world_height; iz++){

                render[ix][iy][iz].Render();

            }

        }

    }   

    while(!Display.isCloseRequested()){

        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

        glTranslatef(xspeed, -jumpsd, zspeed);

        for(int ix = 0; ix < world_width; ix++){

            for(int iy = 0; iy < world_hight; iy++){    

                for(int iz = 0; iz < world_height; iz++){

                    render[ix][iy][iz].Draw();

                }

            }

        }

        Display.update();
        Display.sync(35);

    }

如何解决透明度问题?

4

1 回答 1

2

将以下代码放入您的初始化块中:

glEnable(GL_DEPTH_TEST);

于 2012-06-29T15:58:44.450 回答