Blender Z3d Plugin 2021 -

import bpy import os path = "/path/to/z3d/files/" for file in os.listdir(path): if file.endswith(".z3d"): bpy.ops.import_scene.z3d(filepath=os.path.join(path, file)) bpy.ops.export_scene.fbx(filepath=file.replace(".z3d", ".fbx")) bpy.ops.wm.read_factory_settings(use_empty=True) # Reset scene