piranha Posted June 6, 2017 Share Posted June 6, 2017 Hi I have a scaling question. I'm working on a multiplayer tile based driving game where the camera is following the car. I want players to see the same of the map regardless of their screen resolution. So for example if I have 1024x768 as my base size and tiles are 64x64 pixels which will mean 1024 / 64 = 16 tile cols will be visible to the player. If someone opens my game with 1280x1080 as their resolution I don't want them to see 1280 / 64 = 20 tiles but instead scale the graphics and tiles to 1280 / 16 = 80 x 80 pixels per tile. Is there any automated way of doing this or do I need to manually calculate everything and scale all my art? quiphop 1 Link to comment Share on other sites More sharing options...
samme Posted June 6, 2017 Share Posted June 6, 2017 Use scaleMode SHOW_ALL. Link to comment Share on other sites More sharing options...
Recommended Posts