16 lines
316 B
C#
16 lines
316 B
C#
namespace Geri.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;
|
|
}
|
|
}
|
|
}
|