Skip to content
Snippets Groups Projects
Commit 19337ef7 authored by Aras Pranckevicius's avatar Aras Pranckevicius
Browse files

OBJ: reintroduce export menu item for the old (pre-3.1) python exporter

While it still has known issues/bugs/limitations. Also related: D14512.

Differential: D14513
parent e98a2bf1
No related branches found
No related tags found
No related merge requests found
......@@ -501,16 +501,12 @@ def register():
bpy.utils.register_class(cls)
bpy.types.TOPBAR_MT_file_import.append(menu_func_import)
# Disabling the menu entry for this python exporter now that
# there is a C++ exporter. For now, leaving the actual
# export_scene.obj pointing at the python version.
# bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
def unregister():
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
# See comment above about menu for the python exporter
# bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
for cls in classes:
bpy.utils.unregister_class(cls)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment