You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
617 B
21 lines
617 B
using UnityEngine; |
|
using UnityEngine.UI; |
|
|
|
namespace UIWidgets { |
|
/// <summary> |
|
/// Combobox with icons. |
|
/// </summary> |
|
[AddComponentMenu("UI/UIWidgets/ComboboxIcons")] |
|
public class ComboboxIcons : ComboboxCustom<ListViewIcons,ListViewIconsItemComponent,ListViewIconsItemDescription> |
|
{ |
|
/// <summary> |
|
/// Updates the current component with selected item. |
|
/// </summary> |
|
/// <param name="component">Component.</param> |
|
/// <param name="item">Item.</param> |
|
protected override void SetData(ListViewIconsItemComponent component, ListViewIconsItemDescription item) |
|
{ |
|
component.SetData(item); |
|
} |
|
} |
|
} |