Aimbot-ParallelEnv/Assets/XCharts/Runtime/Component/Label/EndLabelStyle.cs
Koha9 6bc1456e4b Fist Sub
based on aimbot multi seane
2022-10-26 04:07:39 +09:00

17 lines
376 B
C#

using System;
using UnityEngine;
namespace XCharts.Runtime
{
[System.Serializable]
public class EndLabelStyle : LabelStyle
{
public EndLabelStyle()
{
m_Offset = new Vector3(5, 0, 0);
m_TextStyle.alignment = TextAnchor.MiddleLeft;
m_NumericFormatter = "f0";
m_Formatter = "{a}:{c}";
}
}
}