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

21 lines
547 B
C#

using XCharts.Runtime;
namespace XCharts.Editor
{
[SerieEditor(typeof(Ring))]
public class RingEditor : SerieEditor<Ring>
{
public override void OnCustomInspectorGUI()
{
PropertyTwoFiled("m_Center");
PropertyTwoFiled("m_Radius");
PropertyField("m_StartAngle");
PropertyField("m_Gap");
PropertyField("m_RoundCap");
PropertyField("m_Clockwise");
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}