0
對於libgdx項目,我想在頂部居中並排地接觸3個圖像,但由於某種原因,中間的一個不居中,他們不會到頂部。他們連接到按鈕「回」演員。中心libgdx舞臺對象
我想:
Table table = new Table();
table.setFillParent(true);
table.setBackground(new TextureRegionDrawable(new TextureRegion(new Texture("background.png"))));
table.padTop(50);
table.add(characters).top().left();
table.add(items).top();
table.add(upgrades).top().right();
table.row();
table.bottom();
table.add(back).size(back.getWidth(), back.getHeight()).colspan(2).padBottom(70);
table.row();
stage.addActor(table);
如果您的圖像有不同的寬度,在電池使用.uniform() –
這將會是一個比較容易回答,如果你可以添加一張圖片來說明你想要達到的問題或結果。 – John