AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
HeatmapChartEditor.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 using UnityEditor;
9 
10 namespace XCharts
11 {
15  [CustomEditor(typeof(HeatmapChart), false)]
17  {
18  protected override void OnEnable()
19  {
20  base.OnEnable();
21  if(target == null) return;
22  m_Chart = (HeatmapChart)target;
23  }
24  }
25 }
XCharts.HeatmapChart
Definition: HeatmapChart.cs:17
XCharts
Definition: RewardChart.cs:14
XCharts.CoordinateChartEditor
Editor class used to edit UI CoordinateChart.
Definition: CoordinateChartEditor.cs:17
XCharts.HeatmapChartEditor
Editor class used to edit UI HeatmapChart.
Definition: HeatmapChartEditor.cs:16