欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maya中大纲视图选择物体报错处理"function selCom at 0x7f29c5c04aa0 "

程序员文章站 2022-07-12 19:40:48
...

问题描述

最近,在maya大纲视图中选择物体时总会出现报错,看着很不舒服,报错代码为<function selCom at 0x7f29c5c04aa0>如下图所示
maya中大纲视图选择物体报错处理"function selCom at 0x7f29c5c04aa0 "

解决办法

在关闭maya的情况下,进入到C:\Users\Administrator\Documents\maya\2018\prefs\workspaces目录下,打开Maya_Classic.json文件,删除-selectCommand \"<function selCom at 0x7f29c5c04aa0>\"这段代码即可
maya中大纲视图选择物体报错处理"function selCom at 0x7f29c5c04aa0 "

还有一种办法,在打开maya的情况下,执行下面代码,重启maya即可

import pymel.core as pm
for items in pm.lsUI(editors=True):
    if not pm.outlinerEditor(items, query=True, exists=True):
        continue
    sel_cmd = pm.outlinerEditor(items, query=True, selectCommand=True)
    if not sel_cmd:
        continue
    if sel_cmd.startswith('<function selCom at '):
        pm.outlinerEditor(items, edit=True, selectCommand='')

maya中大纲视图选择物体报错处理"function selCom at 0x7f29c5c04aa0 "

相关标签: maya python pymel