ProjectDDD/Assets/Plugins/Febucci/Text Animator/Attributes/Runtime/MinValueAttribute.cs

14 lines
245 B (Stored with Git LFS)
C#

using UnityEngine;
namespace Febucci.Attributes
{
public class MinValueAttribute : PropertyAttribute
{
public float min = 0;
public MinValueAttribute(float min)
{
this.min = min;
}
}
}