We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94d1230 commit 2dd473eCopy full SHA for 2dd473e
Packages/com.unity.inputsystem/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs
@@ -89,7 +89,9 @@ public override void OnInspectorGUI()
89
if (actions == InputSystem.actions)
90
{
91
EditorGUILayout.HelpBox("Project-wide actions asset is not recommended to be used with Player " +
92
- "Input because it is a singleton reference and all actions maps are enabled by default.\r\n",
+ "Input because it is a singleton reference and all actions maps are enabled by default.\r\n" +
93
+ "You should manually disable all action maps on Start() and " +
94
+ "manually enable the default action map.",
95
MessageType.Warning);
96
}
97
0 commit comments