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 0a2f46c commit 0bda12aCopy full SHA for 0bda12a
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -100,7 +100,10 @@ public override void OnInspectorGUI() {
100
GUILayout.EndHorizontal ();
101
102
EditorGUILayout.Space ();
103
- if (GUILayout.Button ("Install Maya Integration")) {
+ 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)) {
107
FbxExporters.Editor.IntegrationsUI.InstallMayaIntegration ();
108
}
109
0 commit comments