def __init__(self):
super(CopySkinUI, self).__init__('ml_copySkin', 'Copy SkinClusters', width=400, height=180,
info='''Select a skinned mesh to add to the Source Mesh field below.
Select a destination mesh, or vertices to copy the skin to.
Press the button to copy the skin weights.''')
self.buildWindow()
self.srcMeshField = self.selectionField(label='Source Mesh',
annotation='Select the mesh to be used as the source skin.',
channel=False,
text='')
mc.button(label='Copy Skin', command=self.copySkin, annotation='Copy the Source Skin to selection.')
self.finish()
评论列表
文章目录