Files
beyond/Assets/ThirdParty/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs
2024-11-20 15:21:28 +01:00

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;
}
}
}