Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a game in Libgdx and I have a little problem. I have a number of actors that show up on the screen dynamically. If there is an Image actor that shows up after the first, could I send it to the back so that it doesn't cover the first one that is already on the screen?

Usually Libgdx adds each new actor higher in hierarchy like a stack and brings every one to the front.

share|improve this question

1 Answer

Try the following methods in the Actor class: toFront(), toBack() & setZIndex()

share|improve this answer
I sorted it out preliminary with the Actor Group widget, there you can set the addActorAt([index_number]) – lCmt Feb 18 at 19:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.