Esempio n. 1
0
 public static void GUIPopup(Rect position, StratusDropdownList dropdownList)
 {
     StratusSearchablePopup.Popup(position, dropdownList.selectedIndex, dropdownList.displayedOptions, (int index) => dropdownList.selectedIndex = index);
 }
Esempio n. 2
0
 public static void GUILayoutPopup(StratusDropdownList dropdownList)
 {
     StratusSearchablePopup.Popup(dropdownList.selectedIndex, dropdownList.displayedOptions, (int index) => dropdownList.selectedIndex = index);
 }