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