25 lines
546 B
C#
25 lines
546 B
C#
// Cristian Pop - https://boxophobic.com/
|
|
|
|
using UnityEngine;
|
|
|
|
namespace Boxophobic.StyledGUI
|
|
{
|
|
public class StyledRangeOptions : PropertyAttribute
|
|
{
|
|
public float min;
|
|
public float max;
|
|
public string displayLabel;
|
|
public string[] options;
|
|
|
|
public StyledRangeOptions(float min, float max, string displayLabel, string[] options)
|
|
{
|
|
this.min = min;
|
|
this.max = max;
|
|
this.displayLabel = displayLabel;
|
|
|
|
this.options = options;
|
|
}
|
|
}
|
|
}
|
|
|