【Maya】Error line 1 Cannot find procedure onModelChange3dc
病毒式的maya报错:Error line 1 Cannot find procedure onModelChange3dc解决办法:import pymel.core as pm# Get all model editors in Maya and reset the editorChanged eventfor item in pm.lsUI(editors=True):if...
·
病毒式的maya报错:Error line 1 Cannot find procedure onModelChange3dc
解决办法:
在Maya脚本编辑器执行以下代码:
import pymel.core as pm
# Get all model editors in Maya and reset the editorChanged event
for item in pm.lsUI(editors=True):
if isinstance(item, pm.ui.ModelEditor):
pm.modelEditor(item, edit=True, editorChanged="")
更多推荐




所有评论(0)