interface + naming improvements to vertex wright modifier

- WeightVG -> Vertex Weight
- mapping_mode -> falloff_type
- nicer layout for VertexWeightModifiers add/remove options
This commit is contained in:
Campbell Barton
2011-09-07 07:46:26 +00:00
parent 6d18b1800a
commit 520778163d
9 changed files with 72 additions and 53 deletions

View File

@@ -100,6 +100,22 @@ While this is not best practice - for testing you can extend the search path, th
Don't Use Blender!
==================
While developing your own scripts blenders interface can get in the way, manually reloading, running the scripts, opening file import etc is just overhead.
For scripts that are not interactive it can end up being easier not to use blender at all and run blender from a terminal, without opening a window and execute the script on the command line.
.. code-block::
blender --backgruond --python myscript.py
You might want to run this with a blend file too.
.. code-block::
blender myscene.blend --backgruond --python myscript.py
Use External Tools
==================