[Bf-blender-cvs] [ca28f376f72] master: OBJ: mark the new 3.1+ exporter as experimental for now

Aras Pranckevicius noreply at git.blender.org
Thu Mar 31 15:15:07 CEST 2022


Commit: ca28f376f7268151cf380079b5621bf226e54cd2
Author: Aras Pranckevicius
Date:   Thu Mar 31 15:38:59 2022 +0300
Branches: master
https://developer.blender.org/rBca28f376f7268151cf380079b5621bf226e54cd2

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

===================================================================

M	release/scripts/startup/bl_ui/space_topbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 3355b30dd61..0a428b4ea3f 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -464,7 +464,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 (.dae)")
         if bpy.app.build_options.alembic:
@@ -480,6 +479,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"



More information about the Bf-blender-cvs mailing list