Dear all
Kindle can I modify the GUI skin component, such as the text on the button so I can increase it when the player resolution wild and large, and decrease it when the player going smaller.
thank you
Dear all
Kindle can I modify the GUI skin component, such as the text on the button so I can increase it when the player resolution wild and large, and decrease it when the player going smaller.
thank you
At least you can have different skins for different resolutions. Just select suitable skin for a resolution, e.g.:
if(Screen.width >= 1024) {
GUI.skin = skinForHighRes;
}
else if(Screen.width >= 800) (
GUI.skin = skinForMedRes;
}
else {
GUI.skin = skinForLowRes;
)
(untested code)