mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
20 lines
506 B
C#
20 lines
506 B
C#
|
|
using UnityEditor;
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[ComponentEditor(typeof(GridCoord))]
|
|
public class GridCoordEditor : MainComponentEditor<GridCoord>
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
++EditorGUI.indentLevel;
|
|
PropertyField("m_Left");
|
|
PropertyField("m_Right");
|
|
PropertyField("m_Top");
|
|
PropertyField("m_Bottom");
|
|
PropertyField("m_BackgroundColor");
|
|
--EditorGUI.indentLevel;
|
|
}
|
|
}
|
|
} |