Files
XCharts/Editor/Series/ParallelEditor.cs

16 lines
377 B
C#
Raw Normal View History

2020-05-21 08:32:52 +08:00
2021-12-24 13:33:09 +08:00
namespace XCharts.Editor
2020-05-21 08:32:52 +08:00
{
2021-11-23 13:20:07 +08:00
[SerieEditor(typeof(Parallel))]
public class ParallelEditor : SerieEditor<Parallel>
2020-05-21 08:32:52 +08:00
{
2021-11-23 13:20:07 +08:00
public override void OnCustomInspectorGUI()
2020-05-21 08:32:52 +08:00
{
2021-11-23 13:20:07 +08:00
PropertyField("m_ParallelIndex");
PropertyField("m_LineType");
PropertyField("m_LineStyle");
PropertyField("m_Animation");
2020-05-21 08:32:52 +08:00
}
}
}