IntSliderAttribute.cs 343 B

12345678910111213141516
  1. using BehaviorDesigner.Runtime.Tasks;
  2. namespace BehaviorDesigner.Runtime.ObjectDrawers
  3. {
  4. public class IntSliderAttribute : ObjectDrawerAttribute
  5. {
  6. public int min;
  7. public int max;
  8. public IntSliderAttribute(int min, int max)
  9. {
  10. this.min = min;
  11. this.max = max;
  12. }
  13. }
  14. }