Notifications
Clear all

[Closed] fbx/dae export log issue

I’m having an issue with the fbx/dae exporter. It doesn’t store the log/warning messages correctly. This means I can’t present these mostly useful messages to my users.

  When the fbx/dae exporter runs into problems it will log these to a file. When exporting manually the messages will normally be shown in a messagebox and additionally stored in a log file. However, when using the #noprompt flag, the warnings aren't shown (that's ok) but also aren't stored (bad).
  The following example should store a log with warnings, but it doesn't. To trigger a warning, make a sphere and add a physique modifier to it. 
pluginManager.loadClass FbxExporter
 FBXExporterSetParam "ShowWarnings" false
  FBXExporterSetParam "GenerateLog" true
  exportfile @"C:	est	est.fbx" #noprompt using:fbxexp
  The showwarnings and generatelog properties are also available with the manual export. The logs are stored in my case here: C:\Users\klaas\Documents\3dsMax\FBX\3dsMax2014_X64\Logs (windows 7).
  Does anyone know how to coerce max to store the logs like it should?
2 Replies

does the command

FBXExporterSetParam "GenerateLog" true

even exist ? it returns unsupplied here and theres no reference in the 2014 mxs help

I’ve found these options in the mxs 2014 docs here.
If I run that line, it returns “OK”. But I forgot to add you need to make sure the fbx exporter class is loaded before settings these parameters. This is also documented on that page. Like so:

[i]pluginManager.loadClass FbxExporter[/i]

I’ve also edited the original post.