当前位置: 首页>>代码示例>>Python>>正文


Python pmcmds.editorTemplate函数代码示例

本文整理汇总了Python中pymel.internal.pmcmds.editorTemplate函数的典型用法代码示例。如果您正苦于以下问题:Python editorTemplate函数的具体用法?Python editorTemplate怎么用?Python editorTemplate使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了editorTemplate函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: callCustom

 def callCustom(self, newFunc, replaceFunc, *attrs):
     #cmds.editorTemplate(callCustom=( (newFunc, replaceFunc) + attrs))
     import pymel.tools.py2mel
     if hasattr(newFunc, '__call__'):
         name = self.__class__.__name__ + '_callCustom_newFunc_' + '_'.join(attrs)
         newFunc = pymel.tools.py2mel.py2melProc(newFunc, procName=name, argTypes=['string'] * len(attrs))
     if hasattr(replaceFunc, '__call__'):
         name = self.__class__.__name__ + '_callCustom_replaceFunc_' + '_'.join(attrs)
         replaceFunc = pymel.tools.py2mel.py2melProc(replaceFunc, procName=name, argTypes=['string'] * len(attrs))
     args = (newFunc, replaceFunc) + attrs
     cmds.editorTemplate(callCustom=1, *args)
开发者ID:eahneahn,项目名称:pymel,代码行数:11,代码来源:uitypes.py

示例2: addControl

 def addControl(self, control, label=None, changeCommand=None, annotation=None, preventOverride=False, dynamic=False):
     args = [control]
     kwargs = {'preventOverride': preventOverride}
     if dynamic:
         kwargs['addDynamicControl'] = True
     else:
         kwargs['addControl'] = True
     if changeCommand:
         if hasattr(changeCommand, '__call__'):
             import pymel.tools.py2mel
             name = self.__class__.__name__ + '_callCustom_changeCommand_' + control
             changeCommand = pymel.tools.py2mel.py2melProc(changeCommand, procName=name, argTypes=['string'])
         args.append(changeCommand)
     if label:
         kwargs['label'] = label
     if annotation:
         kwargs['annotation'] = annotation
     cmds.editorTemplate(*args, **kwargs)
开发者ID:eahneahn,项目名称:pymel,代码行数:18,代码来源:uitypes.py

示例3: addExtraControls

 def addExtraControls(self, label=None):
     kwargs = {}
     if label:
         kwargs['extraControlsLabel'] = label
     cmds.editorTemplate(addExtraControls=True, **kwargs)
开发者ID:eahneahn,项目名称:pymel,代码行数:5,代码来源:uitypes.py

示例4: addComponents

 def addComponents(self):
     cmds.editorTemplate(addComponents=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例5: addSeparator

 def addSeparator(self):
     cmds.editorTemplate(addSeparator=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例6: interruptOptimize

 def interruptOptimize(self):
     cmds.editorTemplate(interruptOptimize=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例7: endNoOptimize

 def endNoOptimize(self):
     cmds.editorTemplate(endNoOptimize=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例8: beginNoOptimize

 def beginNoOptimize(self):
     cmds.editorTemplate(beginNoOptimize=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例9: endScrollLayout

 def endScrollLayout(self):
     cmds.editorTemplate(endScrollLayout=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例10: beginScrollLayout

 def beginScrollLayout(self):
     cmds.editorTemplate(beginScrollLayout=True)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例11: beginLayout

 def beginLayout(self, name, collapse=True):
     cmds.editorTemplate(beginLayout=name, collapse=collapse)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例12: dimControl

 def dimControl(self, nodeName, control, state):
     #nodeName = nodeName if nodeName else self.nodeName
     # print "dim", nodeName
     cmds.editorTemplate(dimControl=(nodeName, control, state))
开发者ID:eahneahn,项目名称:pymel,代码行数:4,代码来源:uitypes.py

示例13: suppress

 def suppress(self, control):
     cmds.editorTemplate(suppress=control)
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例14: controlLabel

 def controlLabel(cls, nodeName, control):
     return cmds.editorTemplate(queryLabel=(nodeName, control))
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py

示例15: controlValue

 def controlValue(cls, nodeName, control):
     return cmds.editorTemplate(queryControl=(nodeName, control))
开发者ID:eahneahn,项目名称:pymel,代码行数:2,代码来源:uitypes.py


注:本文中的pymel.internal.pmcmds.editorTemplate函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。