This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This simple example of Blender Python script prints membership of verticies in vertex groups and weights. It uses deform layer. | |
""" | |
import bpy | |
import bmesh | |
obj = bpy.context.object | |
# Get the active mesh |
OlderNewer