System Information
Windows 8.1
Blender Version
Broken: Blender version: 2.75a c27589e 64bit
Short description of error
When exporting a bit more complex FBX scene from the command line (using the binary FBX exporter) blender gives massive amounts of error messages even though the export is successful.
The console is filled with thousands of lines of this one error message:
Error: Object does not have duplis
The binary FBX export is also slow compared to the ASCII FBX export (probably due to console not keeping up with all the text).
Exact steps for others to reproduce the error
I'm exporting from the command line with something like blender.exe my_scene.blender --background --python my_export_script.py where my_export_script.py is basically just a call to bpy.ops.export_scene.fbx()
#/usr/bin/python import bpy bpy.ops.export_scene.fbx( filepath='test.fbx', use_mesh_modifiers=True, use_anim=True, use_anim_optimize=False, use_anim_action_all=False, use_default_take=True, path_mode='STRIP', batch_mode='OFF', )