- Home /
GUI how to make the scrollbar bigger?
Hi,
I'm working on a android project, I am working on the UI, using GUI but I have a problem with the dimension fo the vertical scrollbar, they are too small (in the width) is difficult to use them on mobile device.
that is my code
GUI.VerticalScrollbar (Rect (Screen.width*(0.36), Screen.height-Screen.height*(0.30), Screen.width*(0.05),Screen.height*(0.30) ), R, 0.1, 1.0, 0.0)
if I change the value of Screen.width*(0.05) it change only the dimension of the collider but not the bar itself.
Comment
Best Answer
Answer by saschandroid · Mar 06, 2014 at 08:51 PM
You can use something like:
GUI.skin.verticalScrollbar.fixedWidth = Screen.width * 0.05f;
GUI.skin.verticalScrollbarThumb.fixedWidth = Screen.width * 0.05f;