0

我正在尝试使用 Table 类创建游戏内窗口。但是当我将图像组添加到该表时,似乎 row() 方法对组没有影响,它们都在同一个地方。使用图像而不是组有效。PS。我使用 Group 来重叠图像(悬停效果的边框),不知道更好的方法。谢谢

public class MyGroup extends Group{
        public  MyGroup(Image bg, Image thumb){
            this.addActor(bg);
            this.addActor(thumb);
        }
    }

public class ActionScreen extends Table {

 MyGroup[] group =new MyGroup[8];
for (int i=0;i<8;i++){
            group[i] =  new MyGroup(new Image(skin.getDrawable("item-bg")),new Image(skin.getDrawable("item-bg-over")));
            if (i==4){
                row();
                add(group[i]).top().padLeft(100);
            }
            else{
                add(group[i]).top().padLeft(100);
            }
        }
4

1 回答 1

0

默认情况下,组的大小为零,因此您必须手动设置大小。

在你的 MyGroup 构造函数中,你想调用这样的东西

this.setSize(bg.getWidth(), bg.getHeight());
于 2014-05-30T01:25:34.237 回答