[Bf-extensions-cvs] [403b95ef] master: OBJ: remove "experimental" from C++ based importer/exporter, mark Python legacy

Aras Pranckevicius noreply at git.blender.org
Mon Jul 4 18:10:04 CEST 2022


Commit: 403b95ef6ff38918de966ed2a5843cfa3274a58b
Author: Aras Pranckevicius
Date:   Mon Jul 4 19:09:11 2022 +0300
Branches: master
https://developer.blender.org/rBA403b95ef6ff38918de966ed2a5843cfa3274a58b

OBJ: remove "experimental" from C++ based importer/exporter, mark Python legacy

By now I'm not aware of any serious regressions or missing functionality
in the C++ based OBJ importer/exporter. They have more features (vertex colors
support), and are way faster than the Python based importer/exporter.

Reviewed By: Thomas Dinges, Howard Trickey
Differential Revision: https://developer.blender.org/D15360

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

M	io_scene_obj/__init__.py

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

diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 0ec62410..519b0c85 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -459,11 +459,11 @@ class OBJ_PT_export_geometry(bpy.types.Panel):
 
 
 def menu_func_import(self, context):
-    self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj)")
+    self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj) (legacy)")
 
 
 def menu_func_export(self, context):
-    self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj)")
+    self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj) (legacy)")
 
 
 classes = (



More information about the Bf-extensions-cvs mailing list