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.
24 lines
561 B
24 lines
561 B
2 years ago
|
using UnityEngine;
|
||
|
using UIWidgets;
|
||
|
|
||
|
namespace UIWidgetsSamples {
|
||
|
|
||
|
public class ListViewSlider : ListViewCustom<ListViewSliderComponent,ListViewSliderItem> {
|
||
|
protected override void SetData(ListViewSliderComponent component, ListViewSliderItem item)
|
||
|
{
|
||
|
component.SetData(item);
|
||
|
}
|
||
|
|
||
|
protected override void HighlightColoring(ListViewSliderComponent component)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected override void SelectColoring(ListViewSliderComponent component)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected override void DefaultColoring(ListViewSliderComponent component)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|