Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2005-06-13 03:40:46 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2005-06-13 03:40:46 +0400
commite5b527c629c2b6cc44944cc4b27f21c81d7ab4fb (patch)
tree803c163a7d7cf7cb1593ceeb26e197415d721a49 /release/scripts/wrl2export.py
parent7e816642871ad5259330af59f816696500ff66f1 (diff)
Scripts:
- Jean-Michel Soler updated his paths importer (svg part) -- ongoing work related to this bug report by intrr: http://projects.blender.org/tracker/?func=detail&atid=125&aid=2674&group_id=9 - small doc update in paths import about some imported curves needing "enter edit mode, select all points, toggle cyclic (press 'c')" to show up correctly; - old vrml 2 exporter's menu name and tooltip updated to clarify that it is the old version, soon to be removed (in favor of the already included vrml 97 update by Bart). Also prints a msg about it to the console when used. Thanks all.
Diffstat (limited to 'release/scripts/wrl2export.py')
-rw-r--r--release/scripts/wrl2export.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/release/scripts/wrl2export.py b/release/scripts/wrl2export.py
index e962789f9db..6b0ef55b81b 100644
--- a/release/scripts/wrl2export.py
+++ b/release/scripts/wrl2export.py
@@ -1,11 +1,11 @@
#!BPY
""" Registration info for Blender menus:
-Name: 'VRML 2.0 (.wrl)...'
+Name: 'VRML 97 (old version)...'
Blender: 232
Group: 'Export'
Submenu: 'All Objects...' all
Submenu: 'Selected Objects...' selected
-Tooltip: 'Export to VRML2 (.wrl) file.'
+Tooltip: 'Old version of VRML2 exporter, please try the newer one'
"""
__author__ = ("Rick Kimball", "Ken Miller", "Steve Matthews")
@@ -984,6 +984,9 @@ def file_callback(filename):
#------------------------------------------------------------------------
# main routine
#------------------------------------------------------------------------
+print "\nThis is the old version of the vrml 2 (or 97) exporter."
+print "It should be removed soon, please try the updated 'VRML 97' version.\n"
+
try:
ARG = __script__['arg'] # user selected argument
except: