作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当用户保存文件时,我希望在保存之前进行检查。如果检查失败,则不会保存。我用 mSceneMessage 和 kBeforeSaveCheck 得到了这个,但我不知道如何在失败时自定义弹出消息。这可能吗?
import maya.OpenMaya as om
import maya.cmds as cmds
def func(retCode, clientData):
objExist = cmds.objExists('pSphere1')
om.MScriptUtil.setBool(retCode, (not objExist) ) # Cancel save if there's pSphere1 in the scene
cb_id = om.MSceneMessage.addCheckCallback(om.MSceneMessage.kBeforeSaveCheck, func)
现在显示
File operation cancelled by user supplied callback.
最佳答案
我回答这个问题有点慢,但我今天需要类似的东西,所以我想我会回答。我无法决定在一般情况下我是否会推荐这个,但严格来说,是可以使用 displayString
更改 Maya 界面中相当多的静态字符串。命令。简单的部分是,您知道要查找的字符串
import maya.cmds as cmds
message = u"File operation cancelled by user supplied callback."
keys = cmds.displayString("_", q=True, keys=True)
for k in keys:
value = cmds.displayString(k, q=True, value=True)
if value == message:
print("Found matching displayString: {}".format(k))
在 Maya 2015 上运行它会发现超过 30000 个已注册的显示字符串并返回一个匹配的键:s_TfileIOStrings.rFileOpCancelledByUser
。我觉得很有希望。
这是修改显示字符串的初始代码:
import maya.OpenMaya as om
import maya.cmds as cmds
def func(retCode, clientData):
"""Cancel save if there is a pSphere1 in the scene"""
objExist = cmds.objExists('pSphere1')
string_key = "s_TfileIOStrings.rFileOpCancelledByUser"
string_default = "File operation cancelled by user supplied callback."
string_error = "There is a pSphere1 node in your scene"
message = string_error if objExist else string_default
cmds.displayString(string_key, replace=True, value=message)
om.MScriptUtil.setBool(retCode, (not objExist))
cb_id = om.MSceneMessage.addCheckCallback(om.MSceneMessage.kBeforeSaveCheck, func)
关于python - 自定义 Maya 的 addCheckCallback 弹出消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31647878/
当用户保存文件时,我希望在保存之前进行检查。如果检查失败,则不会保存。我用 mSceneMessage 和 kBeforeSaveCheck 得到了这个,但我不知道如何在失败时自定义弹出消息。这可能吗
我是一名优秀的程序员,十分优秀!