Files
BABA_YAGA/Assets/Scripts/Player/Generic/Attributes/vSeparator.cs
2026-06-04 10:42:23 +07:00

29 lines
650 B
C#

using UnityEngine;
[System.AttributeUsage(System.AttributeTargets.Field, AllowMultiple = true)]
public class vSeparator : PropertyAttribute
{
public string label;
public string tooltip;
public string style;
public int fontSize = 10;
public vSeparator()
{
fontSize = 15;
}
public vSeparator(string label, string tooltip = "")
{
this.label = label;
this.tooltip = tooltip;
this.fontSize = 15;
}
public vSeparator(string label, int fontSize, string tooltip = "")
{
this.label = label;
this.tooltip = tooltip;
this.fontSize = fontSize;
}
}