Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAras Pranckevicius <aras@nesnausk.org>2022-07-04 19:09:11 +0300
committerAras Pranckevicius <aras@nesnausk.org>2022-07-04 19:09:11 +0300
commit403b95ef6ff38918de966ed2a5843cfa3274a58b (patch)
tree40aad772f3c1c90eb1f80d97eaaf122b327d9709 /io_scene_obj
parent849e7196eb4ee7bc5ca8a5644da49ffbd3ff3c97 (diff)
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
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/__init__.py4
1 files changed, 2 insertions, 2 deletions
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 = (