Нема описа
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.

EffectScatterEditor.cs 676B

1234567891011121314151617181920212223242526
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(EffectScatter))]
  5. public class EffectScatterEditor : SerieEditor<EffectScatter>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. if (serie.IsUseCoord<SingleAxisCoord>())
  10. {
  11. PropertyField("m_SingleAxisIndex");
  12. }
  13. else
  14. {
  15. PropertyField("m_XAxisIndex");
  16. PropertyField("m_YAxisIndex");
  17. }
  18. PropertyField("m_Clip");
  19. PropertyField("m_Symbol");
  20. PropertyField("m_ItemStyle");
  21. PropertyField("m_Animation");
  22. }
  23. }
  24. }