摘要:
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 阅读全文
摘要:
PySide PyQt 版本基本兼容处理 # -*- coding: utf-8 -*- try: from PySide import QtCore, QtGui from PySide import QtGui as QtWidgets except: from PySide2 import Q 阅读全文