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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-14 13:44:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-14 13:44:56 +0400
commita7c0f11563e6daa6b6b29c66a9062a718d702128 (patch)
tree83ad1dd97232797115a884909460ad1573562489 /io_scene_x3d/export_x3d.py
parent578a37005a58e20cb28d8485cd20201448cca3bd (diff)
fix error reported [#29228] X3D exporter does not convert to mesh SURFACEs
Diffstat (limited to 'io_scene_x3d/export_x3d.py')
-rw-r--r--io_scene_x3d/export_x3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 79afa5d8..86b9d119 100644
--- a/io_scene_x3d/export_x3d.py
+++ b/io_scene_x3d/export_x3d.py
@@ -1369,7 +1369,7 @@ def export(file,
is_dummy_tx = True
ident += '\t'
- elif obj_type in {'MESH', 'CURVE', 'SURF', 'FONT'}:
+ elif obj_type in {'MESH', 'CURVE', 'SURFACE', 'FONT'}:
if (obj_type != 'MESH') or (use_apply_modifiers and obj.is_modified(scene, 'PREVIEW')):
try:
me = obj.to_mesh(scene, use_apply_modifiers, 'PREVIEW')