Reputation: 120
I have this old Unity project : 3 years old. And it was developed for a specific resolution : iPad 1024*768.
I want to rebuild this on Windows but I want to make it resolution responsive. Do someone knows a way to automatically rescale GUI that have been made before the Canvas & Canvas Scaler ? It Would be MUCH appreciated, Thank you for reading, Bye
Upvotes: 1
Views: 77
Reputation: 651
A very hackish way to do this is multiply all of your height and width values by the ratio of the original width/height to your desired width/height. However, you will battle placement issues and stretching.
My team ended up re-building the GUI for our application because of this. It saved us time in the long-haul and that's what I would suggest.
Upvotes: 1