mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
30 lines
772 B
C#
30 lines
772 B
C#
/******************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/******************************************/
|
|
|
|
using UnityEditor;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI HeatmapChart.
|
|
/// </summary>
|
|
|
|
[CustomEditor(typeof(HeatmapChart), false)]
|
|
public class HeatmapChartEditor : CoordinateChartEditor
|
|
{
|
|
protected override void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
m_Target = (HeatmapChart)target;
|
|
}
|
|
|
|
protected override void OnEndInspectorGUI()
|
|
{
|
|
base.OnEndInspectorGUI();
|
|
}
|
|
}
|
|
} |