Skip to content

Commit 5ef5143

Browse files
committed
fix comment + fn definitions
1 parent 30ce166 commit 5ef5143

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/Integrations/Autodesk/max/scripts/UnityFbxForMaxPlugin.ms

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ fn createUnityExportAction title parentMenu = (
9999
createUnityActionItem "UnityExport" "Unity" title parentMenu;
100100
);
101101

102-
-- Setup UI using menu manager if using 3ds Max 2018+
102+
-- Setup UI in existing Import/Export menus if using 3ds Max 2018+
103103
if (maxVersion())[1] >= 20000 then(
104104
global importMenuName = "File-Import"
105105
global exportMenuName = "File-Export"
@@ -108,13 +108,13 @@ if (maxVersion())[1] >= 20000 then(
108108
global getImportMenu
109109
fn getImportMenu = (
110110
menuMan.findMenu importMenuName
111-
)
111+
);
112112

113113
-- get the export menu
114114
global getExportMenu
115115
fn getExportMenu = (
116116
menuMan.findMenu exportMenuName
117-
)
117+
);
118118

119119
-- Setup UI
120120
fn setupUnityPluginUI = (

0 commit comments

Comments
 (0)