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

Merge branch 'blender-v3.1-release'

parents f6d72972 19337ef7
No related branches found
No related tags found
No related merge requests found
...@@ -485,16 +485,12 @@ def register(): ...@@ -485,16 +485,12 @@ def register():
bpy.utils.register_class(cls) bpy.utils.register_class(cls)
bpy.types.TOPBAR_MT_file_import.append(menu_func_import) bpy.types.TOPBAR_MT_file_import.append(menu_func_import)
# Disabling the menu entry for this python exporter now that bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
# 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)
def unregister(): def unregister():
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import) 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: for cls in classes:
bpy.utils.unregister_class(cls) 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