I’m making a Pong game with levels/maps and new to Tiled.
In the game, there are 4 paddles which has an spawn point and a goal (if the ball hits the goal, the opponent scores) so I’m using this tileset
![]()
As you can see there are arrow tiles which are the spawn points with direction and the blue is the goal. Can I use only those 5 tiles for 4 players by adding a Player ID property, or even better use only 1 tile for goal and 1 for spawn point by adding a Direction property? Or I have to create 4 sets of arrow tiles and goal for each player?
EDIT
Nevermind, I’m learning from an example map and learned that I can Insert Rectangle instead of using that tileset.