From a7c0f11563e6daa6b6b29c66a9062a718d702128 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Mon, 14 Nov 2011 09:44:56 +0000 Subject: [PATCH] fix error reported [#29228] X3D exporter does not convert to mesh SURFACEs --- io_scene_x3d/export_x3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py index 79afa5d85..86b9d1195 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') -- GitLab