From bdef8d94a1649ade5f7d51ff3f67ee594fbbd517 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Wed, 28 Mar 2012 23:06:05 +0000 Subject: [PATCH] VRML importer only supports VRML2 (bug #30624) --- io_scene_x3d/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py index 5a7429f91..c94d3b7e7 100644 --- a/io_scene_x3d/__init__.py +++ b/io_scene_x3d/__init__.py @@ -23,7 +23,7 @@ bl_info = { "author": "Campbell Barton, Bart", "blender": (2, 5, 7), "location": "File > Import-Export", - "description": "Import-Export X3D, Import VRML", + "description": "Import-Export X3D, Import VRML2", "warning": "", "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/" "Scripts/Import-Export/Web3D", @@ -48,7 +48,7 @@ from bpy_extras.io_utils import (ImportHelper, class ImportX3D(bpy.types.Operator, ImportHelper): - '''Import and X3D or VRML file''' + '''Import and X3D or VRML2 file''' bl_idname = "import_scene.x3d" bl_label = "Import X3D/VRML" bl_options = {'PRESET', 'UNDO'} -- GitLab