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.
123456789101112131415161718192021 |
- using UnityEditor;
- using XCharts.Runtime;
-
- namespace XCharts.Editor
- {
- [ComponentEditor(typeof(ParallelCoord))]
- public class ParallelCoordEditor : MainComponentEditor<ParallelCoord>
- {
- public override void OnInspectorGUI()
- {
- ++EditorGUI.indentLevel;
- PropertyField("m_Orient");
- PropertyField("m_Left");
- PropertyField("m_Right");
- PropertyField("m_Top");
- PropertyField("m_Bottom");
- PropertyField("m_BackgroundColor");
- --EditorGUI.indentLevel;
- }
- }
- }
|