05 2021 档案

摘要:photoshop javascript window 的一个例子 参考连接:Photoshop scripts · GitHub // Open Recent Files - Adobe Photoshop Script // Description: displays a Recent File 阅读全文
posted @ 2021-05-25 11:28 ibingshan 阅读(206) 评论(0) 推荐(0)
摘要:Maya type filter def is_mesh(obj): isMesh = False obj_str = str(obj) if cmds.objExists(obj_str): meshType = 'mesh' if cmds.nodeType(obj_str) == meshTy 阅读全文
posted @ 2021-05-19 15:56 ibingshan 阅读(106) 评论(0) 推荐(0)
摘要:PySide PyQt 版本基本兼容处理 # -*- coding: utf-8 -*- try: from PySide import QtCore, QtGui from PySide import QtGui as QtWidgets except: from PySide2 import Q 阅读全文
posted @ 2021-05-19 10:55 ibingshan 阅读(461) 评论(0) 推荐(0)