2025-07-08 10:46:31 +00:00
|
|
|
|
using BehaviorDesigner.Runtime.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BehaviorDesigner.Runtime.ObjectDrawers
|
|
|
|
|
{
|
|
|
|
|
public class IntSliderAttribute : ObjectDrawerAttribute
|
|
|
|
|
{
|
|
|
|
|
public int min;
|
|
|
|
|
public int max;
|
|
|
|
|
|
|
|
|
|
public IntSliderAttribute(int min, int max)
|
|
|
|
|
{
|
|
|
|
|
this.min = min;
|
|
|
|
|
this.max = max;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|