No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GridCoordEditor.cs 659B

1234567891011121314151617181920212223
  1. using UnityEditor;
  2. using XCharts.Runtime;
  3. namespace XCharts.Editor
  4. {
  5. [ComponentEditor(typeof(GridCoord))]
  6. public class GridCoordEditor : MainComponentEditor<GridCoord>
  7. {
  8. public override void OnInspectorGUI()
  9. {
  10. ++EditorGUI.indentLevel;
  11. PropertyField("m_Left");
  12. PropertyField("m_Right");
  13. PropertyField("m_Top");
  14. PropertyField("m_Bottom");
  15. PropertyField("m_BackgroundColor");
  16. PropertyField("m_ShowBorder");
  17. PropertyField("m_BorderWidth");
  18. PropertyField("m_BorderColor");
  19. --EditorGUI.indentLevel;
  20. }
  21. }
  22. }