18 lines
431 B
C#
18 lines
431 B
C#
//-------------------------------------------------
|
|
// NGUI: Next-Gen UI kit
|
|
// Copyright © 2011-2019 Tasharen Entertainment Inc
|
|
//-------------------------------------------------
|
|
|
|
using UnityEngine;
|
|
|
|
public class MinMaxRangeAttribute : PropertyAttribute
|
|
{
|
|
public float minLimit, maxLimit;
|
|
|
|
public MinMaxRangeAttribute (float minLimit, float maxLimit)
|
|
{
|
|
this.minLimit = minLimit;
|
|
this.maxLimit = maxLimit;
|
|
}
|
|
}
|