You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Assets/Integrations/Autodesk/maya/scripts/unitySetupUI.mel
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,16 @@ global string $unityIconPath = "unity.png";
9
9
10
10
global string $unityFamilyLabel = "The UnityFbxForMaya plugin (v.{Version}) allows you to reliably exchange and review your work between Maya and Unity.";
11
11
global string $unityImportLabel = "Import an FBX file from a Unity project and auto-configure for exporting";
12
-
global string $unityExportLabel = "Export Model to Unity";
12
+
global string $unityExportModelLabel = "Export Model to Unity";
13
+
global string $unityExportAnimLabel = "Export Animation to Unity";
13
14
14
15
global string $unityCommandsFile = "unityCommands.mel";
15
16
global string $unityImportMenuName = "Import";
16
-
global string $unityExportMenuName = "Export";
17
+
global string $unityExportModelMenuName = "Export Model Only";
18
+
global string $unityExportAnimMenuName = "Export Animation Only";
17
19
global string $unityImportCommand = "unityImport";
18
-
global string $unityExportCommand = "unityExport";
20
+
global string $unityExportModelCommand = "unityExportModel";
21
+
global string $unityExportAnimCommand = "unityExportAnim";
0 commit comments