Files
XCharts/Runtime/Component/Child/TextPadding.cs

20 lines
423 B
C#
Raw Normal View History

2022-04-26 08:24:45 +08:00
using System;
using UnityEngine;
namespace XCharts.Runtime
{
/// <summary>
/// Settings related to text.
2023-11-11 23:32:24 +08:00
/// ||文本的内边距设置。
2022-04-26 08:24:45 +08:00
/// </summary>
[Serializable]
public class TextPadding : Padding
2022-04-26 08:24:45 +08:00
{
public TextPadding() { }
public TextPadding(float top, float right, float bottom, float left)
{
SetPadding(top, right, bottom, left);
}
}
}