暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ParallelEditor.cs 439B

1234567891011121314151617
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(Parallel))]
  5. public class ParallelEditor : SerieEditor<Parallel>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. PropertyField("m_ColorBy");
  10. PropertyField("m_ParallelIndex");
  11. PropertyField("m_LineType");
  12. PropertyField("m_LineStyle");
  13. PropertyField("m_Animation");
  14. }
  15. }
  16. }