Skip to content

Commit 9aff398

Browse files
author
AJubrey
committed
[CHANGED] text and tooltip of hide toggle
[CHANGED] moved the last two checkboxes above the integration button
1 parent 2249695 commit 9aff398

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -176,25 +176,30 @@ public override void OnInspectorGUI() {
176176

177177
EditorGUILayout.Space();
178178

179-
var installIntegrationContent = new GUIContent(
180-
"Install Unity Integration",
181-
"Install and configure the Unity integration for the selected 3D application so that you can import and export directly with this project.");
182-
if (GUILayout.Button (installIntegrationContent)) {
183-
FbxExporters.Editor.IntegrationsUI.InstallDCCIntegration ();
184-
}
185-
186179
exportSettings.launchAfterInstallation = EditorGUILayout.Toggle(
187180
new GUIContent("Keep 3D Application opened:",
188181
"Keep the selected 3D application open after Unity integration install has completed."),
189182
exportSettings.launchAfterInstallation
190183
);
191184

192185
exportSettings.HideSendToUnityMenu = EditorGUILayout.Toggle(
193-
new GUIContent("Hide 'SendToUnity' menu (Maya only):",
194-
"Hide the GamePipeline menu in Maya, can help avoid confusion with Fbx export menu (will only affect maya integration)"),
186+
new GUIContent("Replace native menu:",
187+
"Replace Maya's native 'Send to Unity' menu with the UnityFbxForMaya's Export"),
195188
exportSettings.HideSendToUnityMenu
196189
);
197190

191+
EditorGUILayout.Space();
192+
193+
194+
var installIntegrationContent = new GUIContent(
195+
"Install Unity Integration",
196+
"Install and configure the Unity integration for the selected 3D application so that you can import and export directly with this project.");
197+
if (GUILayout.Button (installIntegrationContent)) {
198+
FbxExporters.Editor.IntegrationsUI.InstallDCCIntegration ();
199+
}
200+
201+
202+
198203
GUILayout.FlexibleSpace ();
199204
GUILayout.EndScrollView ();
200205
GUILayout.EndVertical();

0 commit comments

Comments
 (0)