@@ -13,13 +13,13 @@ namespace Microsoft.MixedReality.Toolkit.Core.Inspectors.Profiles
1313 public class MixedRealityInputSystemProfileInspector : MixedRealityBaseConfigurationProfileInspector
1414 {
1515 private SerializedProperty inputActionsProfile ;
16- private SerializedProperty gesturesProfile ;
1716 private SerializedProperty inputActionRulesProfile ;
1817 private SerializedProperty pointerProfile ;
18+ private SerializedProperty gesturesProfile ;
1919 private SerializedProperty speechCommandsProfile ;
20- private SerializedProperty controllerVisualizationProfile ;
2120 private SerializedProperty enableControllerMapping ;
2221 private SerializedProperty controllerMappingProfile ;
22+ private SerializedProperty controllerVisualizationProfile ;
2323
2424 private void OnEnable ( )
2525 {
@@ -34,13 +34,13 @@ private void OnEnable()
3434 }
3535
3636 inputActionsProfile = serializedObject . FindProperty ( "inputActionsProfile" ) ;
37- gesturesProfile = serializedObject . FindProperty ( "gesturesProfile" ) ;
3837 inputActionRulesProfile = serializedObject . FindProperty ( "inputActionRulesProfile" ) ;
3938 pointerProfile = serializedObject . FindProperty ( "pointerProfile" ) ;
39+ gesturesProfile = serializedObject . FindProperty ( "gesturesProfile" ) ;
4040 speechCommandsProfile = serializedObject . FindProperty ( "speechCommandsProfile" ) ;
41- controllerVisualizationProfile = serializedObject . FindProperty ( "controllerVisualizationProfile" ) ;
42- enableControllerMapping = serializedObject . FindProperty ( "enableControllerMapping" ) ;
4341 controllerMappingProfile = serializedObject . FindProperty ( "controllerMappingProfile" ) ;
42+ enableControllerMapping = serializedObject . FindProperty ( "enableControllerMapping" ) ;
43+ controllerVisualizationProfile = serializedObject . FindProperty ( "controllerVisualizationProfile" ) ;
4444 }
4545
4646 public override void OnInspectorGUI ( )
@@ -73,13 +73,13 @@ public override void OnInspectorGUI()
7373 bool changed = false ;
7474
7575 changed |= RenderProfile ( inputActionsProfile ) ;
76- changed |= RenderProfile ( gesturesProfile ) ;
7776 changed |= RenderProfile ( inputActionRulesProfile ) ;
7877 changed |= RenderProfile ( pointerProfile ) ;
78+ changed |= RenderProfile ( gesturesProfile ) ;
7979 changed |= RenderProfile ( speechCommandsProfile ) ;
80- changed |= RenderProfile ( controllerVisualizationProfile ) ;
8180 EditorGUILayout . PropertyField ( enableControllerMapping ) ;
8281 changed |= RenderProfile ( controllerMappingProfile ) ;
82+ changed |= RenderProfile ( controllerVisualizationProfile ) ;
8383
8484 if ( ! changed )
8585 {
0 commit comments