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>2004-11-07 19:31:13 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2004-11-07 19:31:13 +0300
commitc702b237d5f9a542c1d327e1c87a5b7e7ec81590 (patch)
tree99347ced1b1260843aff9c6f70670a2a9d45f7f8 /release/scripts/rvk1_torvk2.py
parent23e8b982288699258c4bf4d7f5464f968b98d5cf (diff)
Scripts:
-- adding help_browser.py to show help for installed scripts; -- updated scripts to include basic doc info to be shown with above script: script authors can / will / should update with more info, of course; -- updated some scripts to newer versions: disp_paint, fixfromarmature, hotkeys, etc.
Diffstat (limited to 'release/scripts/rvk1_torvk2.py')
-rw-r--r--release/scripts/rvk1_torvk2.py21
1 files changed, 20 insertions, 1 deletions
diff --git a/release/scripts/rvk1_torvk2.py b/release/scripts/rvk1_torvk2.py
index 2987c15ca2b..6a7f31fb252 100644
--- a/release/scripts/rvk1_torvk2.py
+++ b/release/scripts/rvk1_torvk2.py
@@ -7,6 +7,25 @@ Group: 'Mesh'
Tip: 'Copy deform data (not surf. subdiv) of active obj to rvk of the 2nd selected obj'
"""
+__author__ = "Jean-Michel Soler (jms)"
+__url__ = ("blender", "elysiun",
+"Script's homepage, http://jmsoler.free.fr/didacticiel/blender/tutor/cpl_rvk1versrvk2.htm",
+"Communicate problems and errors, http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender")
+__version__ = "2004/05"
+
+__bpydoc__ = """\
+"RVK1 to RVK2" copies deform data (except surface subdivision) of the active
+object to the RVK (relative vertex key) of the other selected object.
+
+Usage:
+
+Select the object that will receive the rvk info, then select the deformed
+object, enter Edit Mode and run this script from the "Mesh->Scripts" menu of
+the 3d View. If the active object has subsurf turned on and nonzero subdiv
+level, the script will ask if it should change that. Before copying data to
+the rvk it will also ask whether it should replace or add a new vertex group.
+"""
+
# $Id$
#
#----------------------------------------------
@@ -104,7 +123,7 @@ def rvk2rvk():
Blender.Redraw()
except:
- Draw.PupMenu('Error| You need to select two meshes.')
+ Draw.PupMenu('Error%t|You need to select two meshes.')
Blender.Window.EditMode(0)