File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Assets/Integrations/Autodesk/max/scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ fn createUnityExportAction title parentMenu = (
99
99
createUnityActionItem " UnityExport" " Unity" title parentMenu;
100
100
);
101
101
102
- -- Setup UI using menu manager if using 3ds Max 2018+
102
+ -- Setup UI in existing Import/Export menus if using 3ds Max 2018+
103
103
if (maxVersion())[1 ] >= 20000 then (
104
104
global importMenuName = " File-Import"
105
105
global exportMenuName = " File-Export"
@@ -108,13 +108,13 @@ if (maxVersion())[1] >= 20000 then(
108
108
global getImportMenu
109
109
fn getImportMenu = (
110
110
menuMan.findMenu importMenuName
111
- )
111
+ );
112
112
113
113
-- get the export menu
114
114
global getExportMenu
115
115
fn getExportMenu = (
116
116
menuMan.findMenu exportMenuName
117
- )
117
+ );
118
118
119
119
-- Setup UI
120
120
fn setupUnityPluginUI = (
You can’t perform that action at this time.
0 commit comments