maint: added minmaxslider package
This commit is contained in:
16
Assets/SimpleMinMaxSlider/Scripts/MinMaxSliderAttribute.cs
Normal file
16
Assets/SimpleMinMaxSlider/Scripts/MinMaxSliderAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace GD.MinMaxSlider
|
||||
{
|
||||
using UnityEngine;
|
||||
|
||||
public class MinMaxSliderAttribute : PropertyAttribute{
|
||||
|
||||
public float min;
|
||||
public float max;
|
||||
|
||||
public MinMaxSliderAttribute(float min, float max)
|
||||
{
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user