Hello everybody,
I’m making a board game and I used a TiledMap for the board. Since the movement of the game pieces is gonna be quite simple I was thinking about making them actors and just move them by using addAction the problem is that for using actors I would need a Stage and I don’t know if it is possible (or remmended) to use both at the same time. So I have two questions:
Question 1 Can I add actors to a TileMap or, somehow, use a TileMap and Stage at the same time?
Question 2 I’m also planning to have some sort of UI on top of the game (in one corner) and I guess the best I could use for that is a scene2d. Is it posible to have all the components I want at the same time? or would it be better that I just forget about the TiledMap and start working with a scene2d and Stage?