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.
20 lines
462 B
20 lines
462 B
using UnityEngine; |
|
|
|
namespace UIWidgets |
|
{ |
|
/// <summary> |
|
/// Vertical range slider. |
|
/// </summary> |
|
[AddComponentMenu("UI/UIWidgets/RangeSliderVertical")] |
|
public class RangeSliderVertical : RangeSlider |
|
{ |
|
/// <summary> |
|
/// Determines whether this instance is horizontal. |
|
/// </summary> |
|
/// <returns><c>true</c> if this instance is horizontal; otherwise, <c>false</c>.</returns> |
|
protected override bool IsHorizontal() |
|
{ |
|
return false; |
|
} |
|
} |
|
} |