RadarEditor.cs 590 B

12345678910111213141516171819202122
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(Radar))]
  5. public class RadarEditor : SerieEditor<Radar>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. PropertyField("m_ColorBy");
  10. PropertyField("m_RadarType");
  11. PropertyField("m_RadarIndex");
  12. PropertyField("m_MaxCache");
  13. PropertyField("m_Smooth");
  14. PropertyField("m_Symbol");
  15. PropertyField("m_LineStyle");
  16. PropertyField("m_ItemStyle");
  17. PropertyField("m_Animation");
  18. }
  19. }
  20. }