Hello I'm using Libgdx And table with scene2d. I'm trying to add a few image buttons to the same row but what I'm getting is that the first image is centered in the middle and other two are pushed to the side , that also ruins my table (spacing) Is there any method to add multiple Actors to the same row ?
Asked
Active
Viewed 992 times
3
-
How does the code of your table look like? – donfuxx Jul 28 '14 at 12:37
-
Nevermind I got around this problem – user3802649 Jul 28 '14 at 16:05
1 Answers
7
I got around this problem with using multiple tables (Remember things are drawn in order they're added to stage). The problem here was that I had buttons with the size off almost all screen so the elements in table could've only used those cells (One cell was the size of the screen)

user3802649
- 379
- 2
- 13
-
3+!, You came back and answered your own question when you found the solution to help others. More users need to do this, thanks. – Mitch Connor Jul 28 '14 at 16:15