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


Python Red9_General.thumbNailScreen方法代码示例

本文整理汇总了Python中Red9_General.thumbNailScreen方法的典型用法代码示例。如果您正苦于以下问题:Python Red9_General.thumbNailScreen方法的具体用法?Python Red9_General.thumbNailScreen怎么用?Python Red9_General.thumbNailScreen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Red9_General的用法示例。


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

示例1: poseSave

# 需要导入模块: import Red9_General [as 别名]
# 或者: from Red9_General import thumbNailScreen [as 别名]
 def poseSave(self, nodes, filepath=None, useFilter=True, storeThumbnail=True):
     '''
     Entry point for the generic PoseSave.
     
     :param nodes: nodes to store the data against OR the rootNode if the 
         filter is active.
     :param filepath: posefile to save - if not given the pose is cached on this 
         class instance.
     :param useFilter: use the filterSettings or not.
     '''
     #push args to object - means that any poseHandler.py file has access to them
     self.filepath=filepath
     self.useFilter=useFilter
     if self.filepath:
         log.debug('PosePath given : %s' % filepath)
         
     self.buildInternalPoseData(nodes)
     
     if self.filepath:
         self._writePose(filepath)
         
         if storeThumbnail:
             sel=cmds.ls(sl=True,l=True)
             cmds.select(cl=True)
             r9General.thumbNailScreen(filepath,self.thumbnailRes[0],self.thumbnailRes[1])
             if sel:
                 cmds.select(sel)
     log.info('Pose Saved Successfully to : %s' % filepath)
开发者ID:santicolomo,项目名称:Red9_StudioPack,代码行数:30,代码来源:Red9_PoseSaver.py


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