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.
29 lines
466 B
29 lines
466 B
2 years ago
|
using UIWidgets;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UIWidgetsSamples {
|
||
|
[System.Serializable]
|
||
|
public class ListViewImagesItem : IItemHeight {
|
||
|
/// <summary>
|
||
|
/// URL.
|
||
|
/// </summary>
|
||
|
[SerializeField]
|
||
|
public string Url;
|
||
|
|
||
|
[SerializeField]
|
||
|
float height;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the height of item.
|
||
|
/// </summary>
|
||
|
/// <value>The height.</value>
|
||
|
public float Height {
|
||
|
get {
|
||
|
return height;
|
||
|
}
|
||
|
set {
|
||
|
height = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|