Skip to content
Snippets Groups Projects
Commit 11c78553 authored by Campbell Barton's avatar Campbell Barton
Browse files

rename vrml2 export operator.

parent e78107c8
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ bl_info = { ...@@ -23,7 +23,7 @@ bl_info = {
"author": "Campbell Barton", "author": "Campbell Barton",
"blender": (2, 66, 0), "blender": (2, 66, 0),
"location": "File > Export", "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": "", "warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/" "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Import-Export/VRML2", "Scripts/Import-Export/VRML2",
...@@ -43,9 +43,9 @@ from bpy.props import CollectionProperty, StringProperty, BoolProperty, EnumProp ...@@ -43,9 +43,9 @@ from bpy.props import CollectionProperty, StringProperty, BoolProperty, EnumProp
from bpy_extras.io_utils import ExportHelper, path_reference_mode from bpy_extras.io_utils import ExportHelper, path_reference_mode
class ExportVRML(bpy.types.Operator, ExportHelper): class ExportVRML(bpy.types.Operator, ExportHelper):
"""Export a single object as a VRML2, """ \ """Export mesh objects as a VRML2, """ \
"""colors and texture coordinates""" """colors and texture coordinates"""
bl_idname = "export_mesh.vrml2" bl_idname = "export_scene.vrml2"
bl_label = "Export VRML2" bl_label = "Export VRML2"
filename_ext = ".wrl" filename_ext = ".wrl"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment