Skip to content

Commit 3517d1f

Browse files
authored
Merge pull request #147 from Unity-Technologies/uni-25725-tooltip-on-install-button
uni-25725: add tooltip on the 'install maya' button
2 parents c8085d4 + 0bda12a commit 3517d1f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ public override void OnInspectorGUI() {
9898
GUILayout.EndHorizontal ();
9999

100100
EditorGUILayout.Space ();
101-
if (GUILayout.Button ("Install Maya Integration")) {
101+
var installIntegrationContent = new GUIContent(
102+
"Install Maya Integration",
103+
"Install and configure the Unity integration for Maya so that you can import and export directly to this project.");
104+
if (GUILayout.Button (installIntegrationContent)) {
102105
FbxExporters.Editor.IntegrationsUI.InstallMayaIntegration ();
103106
}
104107

0 commit comments

Comments
 (0)