So I’m having this problem where it looks fine in the unity game view/scene view, but when I build for my android phone the text is reallly small. I’m guessing the text size is pixels and that’s why it seems small on a high resolution. How can I make the text look like it does in the unity game view?
here you go
Study this image
in Anchors
i have set the width of X from min to max as 0.1 to 0.9 that means my text will take up 0.9-0.1 = 0.8 of total width which is 1.0
similarly my text will take 0.7-0.6 = 0.1 of total height.
and then just set all the values of upper rect transform to 0
Note: Tick on best fit to make your text FIT to the its anchors
that means if your screen goes big your text goes big but limited to max value in my image it is from 10 to 40
This happens because the text doesnt scale with screen size, very simple to fix
How to fix:
1. Click Canvas
2. Change the UI Scale Mode to Scale with Screen Size (Drop down menu)
3. Fixed