暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }