I’ve been trying to add background to my platformer for 3 days. I’m using libgdx and the image disappeared before character moved out of the frame because it was too big - I asked about it on stackoverflow and they advised me to cut the background image in pieces and import it as tiles.
My problem is, why is the program constantly stretching my tiles? I can clearly see that my tile is 96x192, so it can be divided by 32. My map tile size is 32x32. But when I put my tile on the map it looks like this:
What’s going on? Do you guys have any recommendations how to solve this, or how to add my background so it is rendered properly?