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 a59a16f commit 3f174ffCopy full SHA for 3f174ff
Assets/FbxExporters/Integrations/Autodesk/max/scripts/unityOneClickPlugin.ms
@@ -1,7 +1,13 @@
1
-- MacroScripts that will perform actions
2
macroScript Import category:"Unity"
3
(
4
-print "I do nothing, but I should Import!"
+-- Make sure the FbxImporter plugin is loaded
5
+pluginManager.loadClass FbxImporter
6
+fbxFileName = getOpenFileName caption:"Import FBX from Unity" filename:"C:/" types:"FBX (*.fbx)|*.fbx|"
7
+if fbxFileName != undefined then
8
+(
9
+ importFile fbxFileName using:FBXIMP
10
+)
11
)
12
macroScript Preview category:"Unity"
13
0 commit comments