Skip to content

Commit 0bda12a

Browse files
author
Benoit Hudson
committed
uni-25725: add tooltip on the 'install maya' button
1 parent 0a2f46c commit 0bda12a

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
@@ -100,7 +100,10 @@ public override void OnInspectorGUI() {
100100
GUILayout.EndHorizontal ();
101101

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

0 commit comments

Comments
 (0)