本文整理汇总了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)