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>2013-03-12 11:21:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-12 11:21:52 +0400
commit11c7855371439e85bd8b6fbfb4329e8eed6bd585 (patch)
tree414653c321a8a28f34322c49803924367d28ff20 /io_scene_vrml2
parente78107c8046a705134be929fc5d8004afd2b9879 (diff)
rename vrml2 export operator.
Diffstat (limited to 'io_scene_vrml2')
-rw-r--r--io_scene_vrml2/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_scene_vrml2/__init__.py b/io_scene_vrml2/__init__.py
index 802fb7a7..977df531 100644
--- a/io_scene_vrml2/__init__.py
+++ b/io_scene_vrml2/__init__.py
@@ -23,7 +23,7 @@ bl_info = {
"author": "Campbell Barton",
"blender": (2, 66, 0),
"location": "File > Export",
- "description": "Exports the active mesh object to VRML2, supporting vertex and material colors",
+ "description": "Exports mesh objects to VRML2, supporting vertex and material colors",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Import-Export/VRML2",
@@ -43,9 +43,9 @@ from bpy.props import CollectionProperty, StringProperty, BoolProperty, EnumProp
from bpy_extras.io_utils import ExportHelper, path_reference_mode
class ExportVRML(bpy.types.Operator, ExportHelper):
- """Export a single object as a VRML2, """ \
+ """Export mesh objects as a VRML2, """ \
"""colors and texture coordinates"""
- bl_idname = "export_mesh.vrml2"
+ bl_idname = "export_scene.vrml2"
bl_label = "Export VRML2"
filename_ext = ".wrl"