Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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