- Home /
Question by
ina · Jun 10, 2011 at 07:50 AM ·
guionguiscrollviewscrollselectiongrid
Clickable Scrollable List?
SelectionGrid cannot seem to be combined with ScrollView. How do you create a clickable scrollable GUI list?
Comment
Answer by pietothemax · Jun 10, 2011 at 07:52 AM
Making a grid inside a scroll view is posible
scroll = GUI.BeginScrollView (outside, scroll, inside);
shopSelection = GUI.SelectionGrid (inside, shopSelection, shopList.shopNames, rowDisplay);
GUI.EndScrollView();
for some reason the scrollbar does not show up for me in the snippet you posted or the one i tried..
is the inside bigger than the outside? you can also specify to always show vertical/horizontal bar
Your answer
Follow this Question
Related Questions
GUIlayout scrollbar, Not working well... 1 Answer
How to disable ScrollView dragging 4 Answers
How to set position in ScrollView? 1 Answer
How can I set the mousewheel scroll speed in a ScrollView? 3 Answers
Suppress Horizontal Scrollbar? 2 Answers