No Description
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.

RingEditor.cs 547B

123456789101112131415161718192021
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(Ring))]
  5. public class RingEditor : SerieEditor<Ring>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. PropertyTwoFiled("m_Center");
  10. PropertyTwoFiled("m_Radius");
  11. PropertyField("m_StartAngle");
  12. PropertyField("m_Gap");
  13. PropertyField("m_RoundCap");
  14. PropertyField("m_Clockwise");
  15. PropertyField("m_ItemStyle");
  16. PropertyField("m_Animation");
  17. }
  18. }
  19. }