暫無描述
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.

RadarEditor.cs 549B

123456789101112131415161718192021
  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_Smooth");
  13. PropertyField("m_Symbol");
  14. PropertyField("m_LineStyle");
  15. PropertyField("m_ItemStyle");
  16. PropertyField("m_Animation");
  17. }
  18. }
  19. }