Files
XCharts/Editor/Series/ParallelEditor.cs
2022-02-19 22:37:57 +08:00

16 lines
399 B
C#

using XCharts.Runtime;
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");
}
}
}