mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
16 lines
377 B
C#
16 lines
377 B
C#
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[SerieEditor(typeof(Parallel))]
|
|
public class ParallelEditor : SerieEditor<Parallel>
|
|
{
|
|
public override void OnCustomInspectorGUI()
|
|
{
|
|
PropertyField("m_ParallelIndex");
|
|
PropertyField("m_LineType");
|
|
PropertyField("m_LineStyle");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |