上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: 静默安装 Microsoft Visual C++ 运行库 举个例子: VC_redist.x64.exe /install /quiet 附加各版本下载路径:https://support.microsoft.com/en-us/help/2977003/the-latest-supported- 阅读全文
posted @ 2020-05-30 13:54 ibingshan 阅读(1527) 评论(0) 推荐(0) 编辑
摘要: python linecache模块 读取文件行使用注意事项 在python中,使用linecache模块读取文件的行很方便 import linecache filename = 'd:/test.txt' linecache.getline(filename, 2) 但是需要注意的是,如果fil 阅读全文
posted @ 2020-05-30 11:18 ibingshan 阅读(837) 评论(0) 推荐(0) 编辑
摘要: 不运行 maya 就可以获取 maya 版本,在 python 中获取 在 window 系统中,在 maya 的安装目录下 /bin 文件夹中,有一个 mayabatch.exe 文件,在命令控制台中运行 mayabatch -v(当前目录是/bin),在mac和linux系统中,命令是 maya 阅读全文
posted @ 2020-05-29 14:09 ibingshan 阅读(841) 评论(0) 推荐(0) 编辑
摘要: linux setfacl chmod g+s 修改文件夹和文件的默认访问权限和所属组 我们在创建一个文件夹或者一个文件的时候,希望集成父文件夹的访问权限和组 修改默认访问权限 setfacl 以及 修改默认组 chmod g+s setfacl -d -m g:dev:rwx [folder_na 阅读全文
posted @ 2020-05-26 11:55 ibingshan 阅读(1850) 评论(0) 推荐(0) 编辑
摘要: Maya material & shading groups 相互获取对应的彼此 源于Maya官方文档: Issue: You want to use MEL to list the connections between a material and its shading group. Solu 阅读全文
posted @ 2020-04-29 17:48 ibingshan 阅读(414) 评论(0) 推荐(0) 编辑
摘要: PyQt PySide 查询内置可用的 style 有时候我们希望改变一下qt窗口的风格,又希望使用内置的style,但是不知道具体有什么,下面介绍一下如果能够查询内置可用的style 在QT4中: import PySide.QtGui print(PySide.QtGui.QStyleFacto 阅读全文
posted @ 2020-04-03 14:09 ibingshan 阅读(336) 评论(0) 推荐(0) 编辑
摘要: maxscript 在长时间的循环loop运算中卡主,白屏的解决方法 windows.processPostedMessages() 在循环中加入:windows.processPostedMessages() 这是官方解析: Runs a message pump that retrieves a 阅读全文
posted @ 2019-12-26 13:36 ibingshan 阅读(534) 评论(0) 推荐(0) 编辑
摘要: QProcessBar setFormat 设置进度格式 QProcessBar 的默认格式是%p%,意思是显示百分比,%p是百分比的变量。 但是如果我们想显示其它格式呢,比如2/10,2是当前值,10是进度总值:%v/%m,%v是当前值,%m是最大值 阅读全文
posted @ 2019-12-26 13:30 ibingshan 阅读(1704) 评论(4) 推荐(0) 编辑
摘要: MaxPlus WStr Python 中的字符串传递给 MaxPlus 在 MaxPlus 中,很多方法的参数使用的字符串的类是 WStr,所以在 Python 中,我们传递字符串的时候,就要把 Python 的字符串类型转换为 WStr, 而我们在构造 WStr 的时候,它的构造函数接受的参数类 阅读全文
posted @ 2019-12-05 15:43 ibingshan 阅读(346) 评论(0) 推荐(0) 编辑
摘要: maya pymel cmds ls 列出未知节点 unknown nodes cmds.ls(type = 'unknown',fl = 1) 阅读全文
posted @ 2019-11-07 13:45 ibingshan 阅读(645) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页