Files
XCharts/Assets/XCharts/Editor/Series/RingEditor.cs
2021-12-24 13:33:09 +08:00

26 lines
735 B
C#

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_RingGap");
PropertyField("m_RoundCap");
PropertyField("m_Clockwise");
PropertyField("m_TitleStyle");
PropertyField("m_ItemStyle");
PropertyField("m_IconStyle");
PropertyField("m_Label");
PropertyField("m_LabelLine");
PropertyField("m_Emphasis");
PropertyField("m_Animation");
}
}
}