Skip to content

Commit 23963cc

Browse files
authored
Better wording for the package sample downloader (#869)
1 parent 74cf8fd commit 23963cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Packages/com.unity.inputsystem/InputSystem/Editor/DownloadableSample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public override void OnInspectorGUI()
6363
else
6464
{
6565
if (!sample.packageDeps.All(x => HasPackage(x)))
66-
EditorGUILayout.HelpBox($"The {target.name} sample requires the following packages to be installed in your project.", MessageType.Warning);
66+
EditorGUILayout.HelpBox($"The {target.name} sample requires the following packages to be installed in your Project. Please install all the required packages before downloading the sample!", MessageType.Warning);
6767
}
6868

6969

@@ -90,7 +90,7 @@ public override void OnInspectorGUI()
9090
GUI.Label(rect, "Missing \u2717", EditorStyles.label);
9191
rect.x += rect.width - 80;
9292
rect.width = 80;
93-
if (GUI.Button(rect, "Add"))
93+
if (GUI.Button(rect, "Install"))
9494
add = Client.Add(req);
9595
}
9696
}

0 commit comments

Comments
 (0)