摘要: ctrl+p 命令帮助 ctrl+n 文件资源管理器添加新标签(win11) MButton 中键盘按下文件资源管理器回退 win+o 关闭显示器 阅读全文
posted @ 2023-09-18 14:02 CGRun 阅读(37) 评论(0) 推荐(0) 编辑
摘要: MAYA_CM_DISABLE_ERROR_POPUPS=1 MAYA_COLOR_MGT_NO_LOGGING=1 Maya.env中添加环境 阅读全文
posted @ 2023-09-08 15:35 CGRun 阅读(593) 评论(0) 推荐(0) 编辑
摘要: import nuke import os from PySide2 import QtCore, QtGui, QtWidgets import shutil def capture_screen(save_path): app = QtWidgets.QApplication.instance( 阅读全文
posted @ 2023-07-21 16:02 CGRun 阅读(25) 评论(0) 推荐(0) 编辑
摘要: from maya.cmds import *; from pymel.core import *; #获取aovs render_type = "RedshiftAOV" for aov_node in ls(type=render_type): ddd = getAttr(aov_node+'. 阅读全文
posted @ 2023-03-23 11:19 CGRun 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1.右键此电脑>属性>打开高级系统设置>高级>环境变量2.新建系统变量变量名:OPENSSL_ia32cap变量值:~0x200000200000000 阅读全文
posted @ 2023-03-19 01:46 CGRun 阅读(2044) 评论(0) 推荐(0) 编辑
摘要: import maya.cmds as cmd import maya.OpenMaya as api import maya.OpenMayaUI as apiUI def grabViewport(directory, imageName, ext="jpg"): viewport = apiU 阅读全文
posted @ 2023-03-08 10:53 CGRun 阅读(115) 评论(0) 推荐(0) 编辑
摘要: """ This will iterate all modelPanels and remove the "CgAbBlastPanelOptChangeCallback" As such, after running this the following error should be fixed 阅读全文
posted @ 2022-12-16 00:48 CGRun 阅读(2882) 评论(0) 推荐(0) 编辑
摘要: import pymel.core as pm # 获取 Maya 中的所有模型编辑器并重置编辑器更改事件 for item in pm.lsUI(editors=True): if isinstance(item, pm.ui.ModelEditor): pm.modelEditor(item, 阅读全文
posted @ 2022-11-29 18:46 CGRun 阅读(1172) 评论(0) 推荐(0) 编辑
摘要: Resshift 破解工具 Redshift破解工具MaxonAppRedshift_For_Pj 用过手动破解 嫌弃resdhift破解步骤麻烦的可以看这里,比较繁琐,新手操作步骤错乱导致破解失败 鉴于是循环试用方式的破解,避免不了14天后在操作一次,为了方便我就写了一个破解工具三部曲 行业不景气,因为有缘我们相聚,成功靠大 阅读全文
posted @ 2022-11-22 17:39 CGRun 阅读(191) 评论(0) 推荐(0) 编辑
摘要: # encoding:utf-8 import os def search(path): if os.listdir(path):#判断文件夹是否为空 print( os.listdir(path) )#打印文件夹内容 else: print('Sorry,这是一个空文件夹.') path = in 阅读全文
posted @ 2022-11-10 15:10 CGRun 阅读(1372) 评论(0) 推荐(0) 编辑