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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-27 14:30:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-27 14:30:10 +0400
commit7f1e9b8c4116915d1a7073f712f62f234454c323 (patch)
tree9839437ad783acad3cdcda27b4fd6d93dbeced10 /doc/python_api/sphinx_doc_gen.py
parent1e7bcece44a1fc149add915e812cd7f9027832c8 (diff)
bmesh py api:
added access to deform weights, access to weights acts like a python dict so you can do... print(group in dvert) dvert[group] = 0.5 print(dvert[group]) del dvert[group] print(dvert.items())
Diffstat (limited to 'doc/python_api/sphinx_doc_gen.py')
-rw-r--r--doc/python_api/sphinx_doc_gen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 60ec027a8c7..cb03907c194 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -342,7 +342,8 @@ MODULE_GROUPING = {
"BMLayerCollection",
"BMLayerItem",
("Custom-Data Layer Types", '-'),
- "BMLoopUV"
+ "BMLoopUV",
+ "BMDeformVert"
)
}