123456789101112131415161718 |
- 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");
- --EditorGUI.indentLevel;
- }
- }
- }
|