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 4bc4b01 commit 3e50a89Copy full SHA for 3e50a89
Assets/Integrations/Autodesk/max/scripts/UnityFbxForMaxPlugin.ms
@@ -207,7 +207,10 @@ macroScript UnityExport category:"Unity" tooltip:"Export a model to Unity"
207
fn getUnityExportSets = (
208
local unityExportSets = #()
209
for expSet in selectionSets do (
210
- if(matchPattern expSet.name pattern:"*_UnityExportSet" and (not isdeleted expSet) and (expSet != undefined)) do (
+ if(matchPattern expSet.name pattern:"*_UnityExportSet" and
211
+ (not isdeleted expSet) and (expSet != undefined) and
212
+ getNodeByName (expSet.name) != undefined) do
213
+ (
214
append unityExportSets expSet
215
)
216
0 commit comments