如何在旋转的等距瓷砖上正常渲染精灵? LIBGDX

时间:2015-07-28 00:44:27

标签: matrix libgdx isometric

我正在使用本教程从普通精灵制作等距地图: http://www.badlogicgames.com/wordpress/?p=2032

我想在位置0,0的地砖上渲染一个房子,但它看起来像这样: http://gyazo.com/c7d5cd74829150c684cfa7b40c9fdfba

这是我的create()和render():

@Override
public void create () {
    batch = new SpriteBatch();
    img = new Texture(Gdx.files.internal("grass2d.jpg"));

    //House
    house = new Sprite(new Texture(Gdx.files.internal("mb_0004.png")));
    house.setSize(2,2);
    house.setPosition(0,0);


    // Camera
    cam = new OrthographicCamera(10,10*(Gdx.graphics.getHeight()/(float)Gdx.graphics.getWidth()));
    cam.position.set(5,5,10);
    cam.direction.set(-1,-1,-1);
    cam.near = 1;
    cam.far = 100;
    //Matrices
    //Matrix to rotate floor tiles
    matrix.setToRotation(new Vector3(1,0,0), 90);
    // Subject to change?
    matrix2.setToRotation(new Vector3(0,1,0),45);

    // populate Tiles
    for(int z = 0; z < 100; z++) {
        for(int x = 0; x < 100; x++) {
            sprites[x][z] = new Sprite(img);
            sprites[x][z].setPosition(x,z);
            sprites[x][z].setSize(1, 1);
        }
    }




    Gdx.input.setInputProcessor(this);

}


@Override
public void render () {
    Gdx.gl.glClearColor(0, 0, 0, 1);
    Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
    cam.update();
    batch.setProjectionMatrix(cam.combined);
    batch.setTransformMatrix(matrix);

    batch.begin();
    for(int z = 0; z < 100; z++) {
        for(int x = 0; x < 100; x++) {
            sprites[x][z].draw(batch);
        }
    }

    batch.end();
    batch.begin();



    //batch.setTransformMatrix(matrix2);
    house.draw(batch);
    batch.end();

我确实尝试创建另一个矩阵来将其转换回来,但随后我的坐标被搞砸了。希望你们能帮忙。

1 个答案:

答案 0 :(得分:-1)

我能够使用TiledMap和自编写的算法来检测是否已经点击了一块瓷砖,以及哪一块。我现在可以用鼠标放置我的房子,非常喜欢结果。

如果有人感兴趣,我会花一些时间写一个小教程。

目前的情况如下: Isometric Tiles