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())
This commit is contained in:
2012-03-27 10:30:10 +00:00
parent 1e7bcece44
commit 7f1e9b8c41
7 changed files with 369 additions and 15 deletions

View File

@@ -342,7 +342,8 @@ MODULE_GROUPING = {
"BMLayerCollection",
"BMLayerItem",
("Custom-Data Layer Types", '-'),
"BMLoopUV"
"BMLoopUV",
"BMDeformVert"
)
}