Files
2025-07-13 23:16:20 +08:00

19 lines
518 B
C#

using UnityEditor;
using XCharts.Runtime;
namespace XCharts.Editor
{
[ComponentEditor(typeof(PolarCoord))]
public class PolarCoordEditor : MainComponentEditor<PolarCoord>
{
public override void OnInspectorGUI()
{
++EditorGUI.indentLevel;
PropertyTwoFiled("m_Center");
PropertyTwoFiled("m_Radius");
PropertyField("m_BackgroundColor");
PropertyField("m_IndicatorLabelOffset");
--EditorGUI.indentLevel;
}
}
}