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.

ParallelCoordEditor.cs 579B

123456789101112131415161718192021
  1. using UnityEditor;
  2. using XCharts.Runtime;
  3. namespace XCharts.Editor
  4. {
  5. [ComponentEditor(typeof(ParallelCoord))]
  6. public class ParallelCoordEditor : MainComponentEditor<ParallelCoord>
  7. {
  8. public override void OnInspectorGUI()
  9. {
  10. ++EditorGUI.indentLevel;
  11. PropertyField("m_Orient");
  12. PropertyField("m_Left");
  13. PropertyField("m_Right");
  14. PropertyField("m_Top");
  15. PropertyField("m_Bottom");
  16. PropertyField("m_BackgroundColor");
  17. --EditorGUI.indentLevel;
  18. }
  19. }
  20. }