Libgdx NESTED ShapeRenderer没有绘制线条

时间:2015-03-01 20:20:50

标签: java android libgdx box2d

在下面的代码中,我检索了一个顶点的arraylist(我已调试它们实际上在那里),然后尝试在这个嵌套在render方法中的嵌套循环排列中渲染它们。出于某种原因,如果这是嵌套的,ShapeRenderer无法连接所有行?有人能告诉我我做错了什么吗?没有任何东西被吸引到屏幕上;我没有错。

    shapeRenderer.setProjectionMatrix(camera.combined);
    shapeRenderer.begin(ShapeType.Line);
    for(int i = 0;i<tmpBodies.size;i++)
    {   
        if(tmpBodies.get(i).getType().equals(BodyType.DynamicBody) && 
           !tmpBodies.get(i).equals(car.getChassis()) &&
           !tmpBodies.get(i).equals(car.rightWheel)&& 
           !tmpBodies.get(i).equals(car.leftWheel)&& 
           !tmpBodies.get(i).equals(terrain))  // tmpBodies.get(i).getFixtureList().get(0).getShape().equals(Type.Chain)
        {
            ChainShape tempShape = new ChainShape();
            ArrayList<Vector2> bodyPoints = new ArrayList<Vector2>();

            tempShape = (ChainShape)tmpBodies.get(i).getFixtureList()
                                    .get(0).getShape();

            for(int q=0; q<tempShape.getVertexCount(); q++)
            {
                Vector2 linePoints = new Vector2();

                tempShape.getVertex(q, linePoints);

                Vector2 newLinePoints = tmpBodies.get(i).getWorldPoint(linePoints);
                bodyPoints.add(newLinePoints);
            }

            for(int z=0; z<tempShape.getVertexCount()-1; z++)
            {
                shapeRenderer.setColor(1, 1, 0, 1);
                shapeRenderer.line(bodyPoints.get(z).x,
                                   bodyPoints.get(z).y,
                                   bodyPoints.get(z+1).x,
                                   bodyPoints.get(z+1).y);
            }
        }
    }

1 个答案:

答案 0 :(得分:0)

如果我解释得好,那可能吗?你需要使用另一个matrix4,如果使用box2d,例​​如PPM单位。

shapeRenderer.setProjectionMatrix(camera.combined);

更改例如:

testMatrix4 Matrix4; //<-- Variable Class. 

//在你的代码中

//Other Code

//batch or Camera Matrix

testMatrix4 = batch.getProyectionMatrix().cpy()
                .scale(YOUR_PPM_X, YOUR_PPM_Y, 0);

shapeRenderer.setProjectionMatrix(testMatrix4);

//Other Code

我从未做过这样的事情,但是如果它不起作用,请通知我,我擦除了。