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:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-10-16 17:07:05 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-10-16 17:07:05 +0300
commit4225323a26c8bc41a35d928acd13e470f81f54fe (patch)
tree02305525e240be0e3a5b0f3ddf912fc2a7f6be88 /object_print3d_utils
parentb51b3515006c08596b067cd75064a3ec6571cf6d (diff)
3D-Print: remove export VRML option
Diffstat (limited to 'object_print3d_utils')
-rw-r--r--object_print3d_utils/__init__.py1
-rw-r--r--object_print3d_utils/export.py10
2 files changed, 0 insertions, 11 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 9d21a032..d567bd77 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -63,7 +63,6 @@ class SceneProperties(PropertyGroup):
items=(
('STL', "STL", ""),
('PLY', "PLY", ""),
- ('WRL', "VRML2", ""),
('X3D', "X3D", ""),
('OBJ', "OBJ", ""),
),
diff --git a/object_print3d_utils/export.py b/object_print3d_utils/export.py
index 022eff17..8c61400f 100644
--- a/object_print3d_utils/export.py
+++ b/object_print3d_utils/export.py
@@ -127,16 +127,6 @@ def write_mesh(context, report_cb):
path_mode=path_mode,
global_scale=global_scale,
)
- elif export_format == 'WRL':
- addon_ensure("io_scene_vrml2")
- filepath = bpy.path.ensure_ext(filepath, ".wrl")
- ret = bpy.ops.export_scene.vrml2(
- filepath=filepath,
- use_mesh_modifiers=True,
- use_selection=True,
- path_mode=path_mode,
- global_scale=global_scale,
- )
elif export_format == 'OBJ':
addon_ensure("io_scene_obj")
filepath = bpy.path.ensure_ext(filepath, ".obj")