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

26 lines
755 B
C#

using XCharts.Runtime;
namespace XCharts.Editor
{
[SerieEditor(typeof(Pie))]
public class PieEditor : SerieEditor<Pie>
{
public override void OnCustomInspectorGUI()
{
PropertyField("m_RoseType");
PropertyField("m_Gap");
PropertyTwoFiled("m_Center");
PropertyTwoFiled("m_Radius");
PropertyField("m_AvoidLabelOverlap");
PropertyFiledMore(() =>
{
PropertyField("m_MinAngle");
PropertyField("m_RoundCap");
PropertyField("m_Ignore");
PropertyField("m_IgnoreValue");
});
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}