NLDClient-yudde/ProjectNLD/Assets/ThirdParty/Behavior Designer/Runtime/Object Drawers/FloatSliderAttribute.cs

16 lines
370 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
using BehaviorDesigner.Runtime.Tasks;
namespace BehaviorDesigner.Runtime.ObjectDrawers
{
public class FloatSliderAttribute : ObjectDrawerAttribute
{
public float min;
public float max;
public FloatSliderAttribute(float min, float max)
{
this.min = min;
this.max = max;
}
}
}