摘要:
使用 wing ide wingdbstub.py 调试代码 在wing的安装目录下,拷贝一个wingdbstub.py 修改: kEmbedded = 1 如果正常安装wing,系统会有一个环境变量'WINGHOME'记录wing的安装目录,如果是绿色版,那么最好是自己手动添加一下,如果不想添加环 阅读全文
摘要:
Max script 自定义菜单栏(menu)残留问题解决方法 问题背景:我们使用menuMan去添加自定义菜单后,以后启动max就会残留,如何保证每次启动max和关闭max会移除自己添加的菜单呢 解决方法: callbacks.removeScripts #preSavingMenus id:#y 阅读全文
摘要:
python 正则表达式 按大写字母、中文、特殊符号分离字符串 import re def split_except_alphabetDigitChinese(unicode_str): """ @return:['matched str', ''] """ if type(unicode_str) 阅读全文
摘要:
python pyside pyqt reload TypeError: super(type, obj): obj must be an instance or subtype of type 一开始遇到这个问题,在网上找了不少解决方法,这里提供链接仅供参考:https://blog.csdn.n 阅读全文
摘要:
Python os.walk 停止遍历满足条件的文件夹 import os for here, dirs, files in os.walk(startdir, topdown=True): dirs[:] = [] 注意:dirs[:] = [] 不能改为 dirs = [] 阅读全文
摘要:
pyside qcombobox hide item from PySide2 import QtWidgets, QtCore comboBox.setItemData(1,QtCore.QSize(0,0),QtCore.Qt.SizeHintRole) 我们也可以使用其它role去改变item 阅读全文
摘要:
python 合并数组为一个总数组 import itertools ab = itertools.chain(['it'], ['was'], ['annoying']) list(ab) #if there is a list of list my_list = [['it'], ['was'] 阅读全文
摘要:
Maya script 根据 face id 获得 material list UE4导入FBX,对于单个物体来说,材质槽的顺序是根据面id来排材质的(多个物体合并可能是另外一种方式) # -*- coding: utf-8 -*- import maya.mel as mel import may 阅读全文
摘要:
photoshop javascript window 的一个例子 参考连接:Photoshop scripts · GitHub // Open Recent Files - Adobe Photoshop Script // Description: displays a Recent File 阅读全文
摘要:
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 阅读全文