Retarget your blendshapes between meshes with the same topology.
Click for video
- Extract the content of the .rar file anywhere on disk.
- Drag the retargetBlendshape.mel file in Maya to permanently install the script.
A button on the MiscTools shelf will be created that will allow easy access to the ui, this way the user doesn't need to worry about any of the code. If user wishes to not use the shelf button the following commands can be used.
Command line:
import retargetBlendshape
retargetBlendshape.convert(
source,
blendshape,
target,
scale=True,
rotate=True,
smooth=0,
smoothIterations=0,
space=OpenMaya.MSpace.kObject,
)
Display UI:
import retargetBlendshape.ui
retargetBlendshape.ui.show()
Retarget your blendshapes between meshes with the same topology. There are a few options that can be helpful to achieve the desired results.
- Scaling your delta depending on the size difference between the source and the target vertex.
- Rotating the delta depending on the normal difference between the source and the target vertex.
- Smoothing based on the vertex size between the retarget mesh and the blendshape mesh.