mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
24 lines
695 B
C#
24 lines
695 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEditor;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI ScatterChart.
|
|
/// </summary>
|
|
[CustomEditor(typeof(ScatterChart), false)]
|
|
public class ScatterChartEditor : CoordinateChartEditor
|
|
{
|
|
protected override void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
m_Chart = (ScatterChart)target;
|
|
}
|
|
}
|
|
} |