@@ -316,9 +316,9 @@ public static BindingSyntax AddBinding(this InputAction action, string path, str
316316        /// be incorrectly registered. 
317317        /// </remarks> 
318318        #if UNITY_EDITOR 
319-         private  static void  RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api  api ) 
319+         private  static void  RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api  api ) 
320320        { 
321-             UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Register ( api ) ; 
321+             UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Register ( api ) ; 
322322        } 
323323
324324        #endif
@@ -367,7 +367,7 @@ public static BindingSyntax AddBinding(this InputAction action, InputControl con
367367        public  static BindingSyntax  AddBinding ( this  InputAction  action ,  InputBinding  binding  =  default ) 
368368        { 
369369            #if UNITY_EDITOR 
370-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . AddBinding ) ; 
370+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . AddBinding ) ; 
371371            #endif
372372
373373            if  ( action  ==  null ) 
@@ -500,7 +500,7 @@ public static BindingSyntax AddBinding(this InputActionMap actionMap, string pat
500500        public  static BindingSyntax  AddBinding ( this  InputActionMap  actionMap ,  InputBinding  binding ) 
501501        { 
502502            #if UNITY_EDITOR 
503-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . AddBinding ) ; 
503+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . AddBinding ) ; 
504504            #endif
505505
506506            if  ( actionMap  ==  null ) 
@@ -527,7 +527,7 @@ public static CompositeSyntax AddCompositeBinding(this InputAction action, strin
527527            string  interactions  =  null ,  string  processors  =  null ) 
528528        { 
529529            #if UNITY_EDITOR 
530-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . AddCompositeBinding ) ; 
530+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . AddCompositeBinding ) ; 
531531            #endif
532532
533533            if  ( action  ==  null ) 
@@ -610,7 +610,7 @@ private static int AddBindingInternal(InputActionMap map, InputBinding binding,
610610        public  static BindingSyntax  ChangeBinding ( this  InputAction  action ,  int  index ) 
611611        { 
612612            #if UNITY_EDITOR 
613-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ChangeBinding ) ; 
613+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ChangeBinding ) ; 
614614            #endif
615615
616616            if  ( action  ==  null ) 
@@ -672,7 +672,7 @@ public static BindingSyntax ChangeBinding(this InputAction action, string name)
672672        public  static BindingSyntax  ChangeBinding ( this  InputActionMap  actionMap ,  int  index ) 
673673        { 
674674            #if UNITY_EDITOR 
675-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ChangeBinding ) ; 
675+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ChangeBinding ) ; 
676676            #endif
677677
678678            if  ( actionMap  ==  null ) 
@@ -874,7 +874,7 @@ public static BindingSyntax ChangeBinding(this InputAction action, InputBinding
874874        public  static BindingSyntax  ChangeCompositeBinding ( this  InputAction  action ,  string  compositeName ) 
875875        { 
876876            #if UNITY_EDITOR 
877-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ChangeCompositeBinding ) ; 
877+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ChangeCompositeBinding ) ; 
878878            #endif
879879
880880            if  ( action  ==  null ) 
@@ -919,7 +919,7 @@ public static BindingSyntax ChangeCompositeBinding(this InputAction action, stri
919919        public  static void  Rename ( this  InputAction  action ,  string  newName ) 
920920        { 
921921            #if UNITY_EDITOR 
922-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . Rename ) ; 
922+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . Rename ) ; 
923923            #endif
924924
925925            if  ( action  ==  null ) 
@@ -965,7 +965,7 @@ public static void Rename(this InputAction action, string newName)
965965        public  static void  AddControlScheme ( this  InputActionAsset  asset ,  InputControlScheme  controlScheme ) 
966966        { 
967967            #if UNITY_EDITOR 
968-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . AddControlScheme ) ; 
968+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . AddControlScheme ) ; 
969969            #endif
970970
971971            if  ( asset  ==  null ) 
@@ -1037,7 +1037,7 @@ public static ControlSchemeSyntax AddControlScheme(this InputActionAsset asset,
10371037        public  static void  RemoveControlScheme ( this  InputActionAsset  asset ,  string  name ) 
10381038        { 
10391039            #if UNITY_EDITOR 
1040-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . RemoveControlScheme ) ; 
1040+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . RemoveControlScheme ) ; 
10411041            #endif
10421042
10431043            if  ( asset  ==  null ) 
@@ -1061,7 +1061,7 @@ public static void RemoveControlScheme(this InputActionAsset asset, string name)
10611061        public  static InputControlScheme  WithBindingGroup ( this  InputControlScheme  scheme ,  string  bindingGroup ) 
10621062        { 
10631063            #if UNITY_EDITOR 
1064-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeWithBindingGroup ) ; 
1064+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeWithBindingGroup ) ; 
10651065            #endif
10661066
10671067            return  new  ControlSchemeSyntax ( scheme ) . WithBindingGroup ( bindingGroup ) . Done ( ) ; 
@@ -1070,7 +1070,7 @@ public static InputControlScheme WithBindingGroup(this InputControlScheme scheme
10701070        public  static InputControlScheme  WithDevice ( this  InputControlScheme  scheme ,  string  controlPath ,  bool  required ) 
10711071        { 
10721072            #if UNITY_EDITOR 
1073-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeWithDevice ) ; 
1073+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeWithDevice ) ; 
10741074            #endif
10751075
10761076            if  ( required ) 
@@ -1081,7 +1081,7 @@ public static InputControlScheme WithDevice(this InputControlScheme scheme, stri
10811081        public  static InputControlScheme  WithRequiredDevice ( this  InputControlScheme  scheme ,  string  controlPath ) 
10821082        { 
10831083            #if UNITY_EDITOR 
1084-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeWithRequiredDevice ) ; 
1084+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeWithRequiredDevice ) ; 
10851085            #endif
10861086
10871087            return  new  ControlSchemeSyntax ( scheme ) . WithRequiredDevice ( controlPath ) . Done ( ) ; 
@@ -1090,7 +1090,7 @@ public static InputControlScheme WithRequiredDevice(this InputControlScheme sche
10901090        public  static InputControlScheme  WithOptionalDevice ( this  InputControlScheme  scheme ,  string  controlPath ) 
10911091        { 
10921092            #if UNITY_EDITOR 
1093-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeWithOptionalDevice ) ; 
1093+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeWithOptionalDevice ) ; 
10941094            #endif
10951095
10961096            return  new  ControlSchemeSyntax ( scheme ) . WithOptionalDevice ( controlPath ) . Done ( ) ; 
@@ -1099,7 +1099,7 @@ public static InputControlScheme WithOptionalDevice(this InputControlScheme sche
10991099        public  static InputControlScheme  OrWithRequiredDevice ( this  InputControlScheme  scheme ,  string  controlPath ) 
11001100        { 
11011101            #if UNITY_EDITOR 
1102-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeOrWithRequiredDevice ) ; 
1102+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeOrWithRequiredDevice ) ; 
11031103            #endif
11041104
11051105            return  new  ControlSchemeSyntax ( scheme ) . OrWithRequiredDevice ( controlPath ) . Done ( ) ; 
@@ -1108,7 +1108,7 @@ public static InputControlScheme OrWithRequiredDevice(this InputControlScheme sc
11081108        public  static InputControlScheme  OrWithOptionalDevice ( this  InputControlScheme  scheme ,  string  controlPath ) 
11091109        { 
11101110            #if UNITY_EDITOR 
1111-             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputActionCodeAuthoringAnalytic . Api . ControlSchemeOrWithOptionalDevice ) ; 
1111+             RegisterApiUsage ( UnityEngine . InputSystem . Editor . InputExitPlayModeAnalytic . Api . ControlSchemeOrWithOptionalDevice ) ; 
11121112            #endif
11131113
11141114            return  new  ControlSchemeSyntax ( scheme ) . OrWithOptionalDevice ( controlPath ) . Done ( ) ; 
0 commit comments