Skip to content

Commit 2dd473e

Browse files
committed
Rework warning message based on QA feedback
1 parent 94d1230 commit 2dd473e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Packages/com.unity.inputsystem/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ public override void OnInspectorGUI()
8989
if (actions == InputSystem.actions)
9090
{
9191
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",
92+
"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.",
9395
MessageType.Warning);
9496
}
9597
}

0 commit comments

Comments
 (0)