- Home /
Question by
levan1 · Jan 05, 2015 at 09:52 PM ·
resolutionscalegui.label
GUI.Label Scale
Hi, I want to scale Gui label, wich will make scaling on every resolution C#
GUI.Label (new Rect(30, 10, 100, 40), "" + Mathf.CeilToInt(Speed));
i searched but couldn't find the method that works
Comment
Answer by Kamuiyshirou · Jan 05, 2015 at 10:21 PM
You can do this:
GUI.DrawTexture(new Rect(0, 0, Screen.width, Screen.height), aTexture);
Your answer
Follow this Question
Related Questions
newbe scaling maze sceen for different resolutions 0 Answers
Adjust overlay position for different resolutions 0 Answers
Screen resolution, scaling and UI size (Small on mobile) 0 Answers
Responsive Canvas - Panel inside not Fitting 0 Answers
Bulletproof way to do resolution independant GUI scaling? 2 Answers