AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
GaugeChartEditor.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(GaugeChart), false)]
17  {
18  protected override void OnEnable()
19  {
20  base.OnEnable();
21  if(target == null) return;
22  m_Chart = (GaugeChart)target;
23  }
24  }
25 }
XCharts.GaugeChart
Definition: GaugeChart.cs:17
XCharts
Definition: RewardChart.cs:14
XCharts.GaugeChartEditor
Editor class used to edit UI GaugeChart.
Definition: GaugeChartEditor.cs:16
XCharts.BaseChartEditor
Editor class used to edit UI BaseChart.
Definition: BaseChartEditor.cs:19