Files
BITFALL/Assets/Plugins/FImpossible Creations/Shared Tools/Editor Tools/Property Attributes/FPD_HeaderAttribute.cs
CortexCore ba342d6627 1
2023-11-30 00:23:23 +08:00

20 lines
470 B
C#

using UnityEngine;
public class FPD_HeaderAttribute : PropertyAttribute
{
public string HeaderText;
public float UpperPadding;
public float BottomPadding;
public float Height;
public FPD_HeaderAttribute(string headerText, float upperPadding = 6f, float bottomPadding = 4f, int addHeight = 2)
{
HeaderText = headerText;
UpperPadding = upperPadding;
BottomPadding = bottomPadding;
Height = addHeight;
}
}