Is there anyway to use buttons, scroll views, ect. from the built-in GUI without using a mouse.
My game does not use a mouse, and I am not going to make it necessary just for the interface.
Is there anyway to use buttons, scroll views, ect. from the built-in GUI without using a mouse.
My game does not use a mouse, and I am not going to make it necessary just for the interface.
I would suggest assigning keys to the buttons. Use GetButtonDown() or GetKeyDown() (check the scripting reference for instructions on how to use these) and set them to do the same thing as the button, thereby eliminating the need to click the button with the mouse. I hope this has helped!
That was what I started to do with buttons. It seems I will have to do something similar to make my own scroll view.