@@ -60,7 +60,7 @@ public override void TearDown()
6060 EventProvider . ClearMockProvider ( ) ;
6161 m_InputForUIEvents . Clear ( ) ;
6262
63- InputSystem . s_Manager . actions = storedActions ;
63+ InputSystem . manager . actions = storedActions ;
6464
6565#if UNITY_EDITOR
6666 if ( File . Exists ( kAssetPath ) )
@@ -193,7 +193,7 @@ public void UIActionNavigation_FiresUINavigationEvents_FromInputsGamepadJoystick
193193 // Remove the project-wide actions asset in play mode and player.
194194 // It will call InputSystem.onActionChange and re-set InputSystemProvider.actionAsset
195195 // This the case where no project-wide actions asset is available in the project.
196- InputSystem . s_Manager . actions = null ;
196+ InputSystem . manager . actions = null ;
197197 }
198198 Update ( ) ;
199199
@@ -267,7 +267,7 @@ public void UIActionSubmit_FiresUISubmitEvents_FromInputsGamepadJoystickAndKeybo
267267 Update ( ) ;
268268 if ( ! useProjectWideActionsAsset )
269269 {
270- InputSystem . s_Manager . actions = null ;
270+ InputSystem . manager . actions = null ;
271271 }
272272 Update ( ) ;
273273
@@ -304,7 +304,7 @@ public void UIActionCancel_FiresUICancelEvents_FromInputsGamepadAndKeyboard(bool
304304 Update ( ) ;
305305 if ( ! useProjectWideActionsAsset )
306306 {
307- InputSystem . s_Manager . actions = null ;
307+ InputSystem . manager . actions = null ;
308308 }
309309 Update ( ) ;
310310
@@ -334,7 +334,7 @@ public void UIActionPoint_FiresUIPointEvents_FromInputsMousePenAndTouch(bool use
334334 Update ( ) ;
335335 if ( ! useProjectWideActionsAsset )
336336 {
337- InputSystem . s_Manager . actions = null ;
337+ InputSystem . manager . actions = null ;
338338 }
339339 Update ( ) ;
340340
@@ -386,7 +386,7 @@ public void UIActionClick_FiresUIClickEvents_FromInputsMousePenAndTouch(bool use
386386 Update ( ) ;
387387 if ( ! useProjectWideActionsAsset )
388388 {
389- InputSystem . s_Manager . actions = null ;
389+ InputSystem . manager . actions = null ;
390390 }
391391 Update ( ) ;
392392
@@ -471,7 +471,7 @@ public void UIActionScroll_FiresUIScrollEvents_FromInputMouse(bool useProjectWid
471471 Update ( ) ;
472472 if ( ! useProjectWideActionsAsset )
473473 {
474- InputSystem . s_Manager . actions = null ;
474+ InputSystem . manager . actions = null ;
475475 }
476476 Update ( ) ;
477477
@@ -502,7 +502,7 @@ public void UIActionScroll_FiresUIScrollEvents_FromInputMouse(bool useProjectWid
502502 public void DefaultActions_ShouldNotGenerateAnyVerificationWarnings ( bool useProjectWideActions )
503503 {
504504 if ( ! useProjectWideActions )
505- InputSystem . s_Manager . actions = null ;
505+ InputSystem . manager . actions = null ;
506506 Update ( ) ;
507507 LogAssert . NoUnexpectedReceived ( ) ;
508508 }
@@ -515,7 +515,7 @@ public void ActionsWithoutUIMap_ShouldGenerateWarnings()
515515 var asset = ProjectWideActionsAsset . CreateDefaultAssetAtPath ( kAssetPath ) ;
516516 asset . RemoveActionMap ( asset . FindActionMap ( "UI" , throwIfNotFound : true ) ) ;
517517
518- InputSystem . s_Manager . actions = asset ;
518+ InputSystem . manager . actions = asset ;
519519 Update ( ) ;
520520
521521 var link = EditorHelpers . GetHyperlink ( kAssetPath ) ;
@@ -551,7 +551,7 @@ public void ActionMapWithNonExistentRequiredAction_ShouldGenerateWarning(string
551551 var action = asset . FindAction ( actionPath ) ;
552552 action . Rename ( "Other" ) ;
553553
554- InputSystem . s_Manager . actions = asset ;
554+ InputSystem . manager . actions = asset ;
555555 Update ( ) ;
556556
557557 //var link = AssetDatabase.GetAssetPath()//EditorHelpers.GetHyperlink(kAssetPath);
@@ -594,7 +594,7 @@ public void ActionMapWithUnboundRequiredAction_ShouldGenerateWarning(string acti
594594
595595 asset . AddActionMap ( newMap ) ;
596596
597- InputSystem . s_Manager . actions = asset ;
597+ InputSystem . manager . actions = asset ;
598598 Update ( ) ;
599599
600600 LogAssert . Expect ( LogType . Warning , new Regex ( $ "^InputAction with path '{ actionPath } ' in asset \" { kAssetPath } \" do not have any configured bindings.") ) ;
@@ -619,7 +619,7 @@ public void ActionWithUnexpectedActionType_ShouldGenerateWarning(string actionPa
619619 var expectedType = action . type ;
620620 action . m_Type = unexpectedType ; // change directly via internals for now
621621
622- InputSystem . s_Manager . actions = asset ;
622+ InputSystem . manager . actions = asset ;
623623 Update ( ) ;
624624
625625 LogAssert . Expect ( LogType . Warning ,
@@ -645,7 +645,7 @@ public void ActionWithDifferentExpectedControlType_ShouldGenerateWarning(string
645645 var expectedControlType = action . expectedControlType ;
646646 action . expectedControlType = unexpectedControlType ;
647647
648- InputSystem . s_Manager . actions = asset ;
648+ InputSystem . manager . actions = asset ;
649649 Update ( ) ;
650650
651651 LogAssert . Expect ( LogType . Warning ,
0 commit comments