작업 조건 분석 기능 개발
This commit is contained in:
26
Assets/Chart And Graph/Editor/GroupLabelsInspector.cs
Normal file
26
Assets/Chart And Graph/Editor/GroupLabelsInspector.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
#define Graph_And_Chart_PRO
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using UnityEditor;
|
||||
|
||||
namespace ChartAndGraph
|
||||
{
|
||||
[CustomEditor(typeof(GroupLabels))]
|
||||
class GroupLabelsInspector : ItemLabelsBaseEditor
|
||||
{
|
||||
protected override string Name
|
||||
{
|
||||
get
|
||||
{
|
||||
return "group labels";
|
||||
}
|
||||
}
|
||||
|
||||
protected override bool isSupported(AnyChart chart)
|
||||
{
|
||||
return ((IInternalUse)chart).InternalSupportsGroupLabels;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user