OBJ: mark the new 3.1+ exporter as experimental for now

While it still has known issues/bugs/limitations. Also do not make it the very first export menu item, while at it.

Differential: D14512
This commit is contained in:
Aras Pranckevicius 2022-03-31 15:38:59 +03:00
parent a28d6a7b56
commit 2cfca7d910
Notes: blender-bot 2023-02-14 07:47:59 +01:00
Referenced by issue #96241, 3.1: Potential candidates for corrective releases
1 changed files with 2 additions and 1 deletions

View File

@ -481,7 +481,6 @@ class TOPBAR_MT_file_export(Menu):
bl_owner_use_filter = False
def draw(self, _context):
self.layout.operator("wm.obj_export", text="Wavefront OBJ (.obj)")
if bpy.app.build_options.collada:
self.layout.operator("wm.collada_export",
text="Collada (Default) (.dae)")
@ -498,6 +497,8 @@ class TOPBAR_MT_file_export(Menu):
if bpy.app.build_options.haru:
self.layout.operator("wm.gpencil_export_pdf", text="Grease Pencil as PDF")
self.layout.operator("wm.obj_export", text="Wavefront (.obj) (experimental)")
class TOPBAR_MT_file_external_data(Menu):
bl_label = "External Data"