本文整理匯總了Python中ngSkinTools.utils.Utils.shortName方法的典型用法代碼示例。如果您正苦於以下問題:Python Utils.shortName方法的具體用法?Python Utils.shortName怎麽用?Python Utils.shortName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ngSkinTools.utils.Utils
的用法示例。
在下文中一共展示了Utils.shortName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: update
# 需要導入模塊: from ngSkinTools.utils import Utils [as 別名]
# 或者: from ngSkinTools.utils.Utils import shortName [as 別名]
def update(self):
if self.data.layerDataAvailable:
return
attachPoint = self.data.getLayersCandidateFromSelection()
attachPossible = len(attachPoint)!=0
selection = cmds.ls(sl=True,o=True)
selectionAvailable = selection is not None and len(selection)>0
if attachPossible:
self.controls.label1.setLabel('Skin selected:')
self.controls.label2.setLabel("%s (%s)" % tuple(map(Utils.shortName,tuple(attachPoint))))
elif selectionAvailable:
self.controls.label1.setLabel("Layer data cannot be attached to:")
self.controls.label2.setLabel(Utils.shortName(selection[0]))
else:
self.controls.label1.setLabel("Nothing is selected")
self.controls.label2.setLabel('')
self.controls.label1.setEnabled(selectionAvailable)
self.controls.label2.setEnabled(selectionAvailable)
cmds.button(self.controls.addLayerDataButton,e=True,enable=attachPossible)
示例2: testShortName
# 需要導入模塊: from ngSkinTools.utils import Utils [as 別名]
# 或者: from ngSkinTools.utils.Utils import shortName [as 別名]
def testShortName(self):
self.assertEquals(Utils.shortName("a|b|c"), "c")
self.assertEquals(Utils.shortName("c"), "c")
self.assertEquals(Utils.shortName("a:c"), "a:c")
self.assertEquals(Utils.shortName("a:b|a:c"), "a:c")
self.assertEquals(Utils.shortName("a:a|a:b|a:c"), "a:c")
self.assertEquals(Utils.shortName(None), None)