mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
25 lines
712 B
C#
25 lines
712 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEditor;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI PieChart.
|
|
/// </summary>
|
|
[CustomEditor(typeof(PieChart), false)]
|
|
public class PieChartEditor : BaseChartEditor
|
|
{
|
|
protected override void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
if(target == null) return;
|
|
m_Chart = (PieChart)target;
|
|
}
|
|
}
|
|
} |