Advertisement
Guest User

Untitled

a guest
May 26th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. HorizontalFlowGroup inventoryFlow = new HorizontalFlowGroup();
  2. add(inventoryFlow).expand().fill();
  3.  
  4. Table itemDescriptionTable = new Table();
  5. add(itemDescriptionTable).width(150).expandY().fillY();
  6.  
  7. for (int i = 0; i < 50; i++) {
  8. Image image = new Image(skin, "default-pane");
  9. image.setSize(64, 64);
  10. inventoryFlow.addActor(image);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement