maya cmds pymel 'ESC' 退出 while, for 循环
import maya.cmds as cmds
cmds.progressWindow(isInterruptable=1)
while 1 :
print "kill me!"
if cmds.progressWindow(query=1, isCancelled=1) :
break
cmds.progressWindow(endProgress=1)
import maya.cmds as cmds
cmds.progressWindow(isInterruptable=1)
while 1 :
print "kill me!"
if cmds.progressWindow(query=1, isCancelled=1) :
break
cmds.progressWindow(endProgress=1)
转载于:https://www.cnblogs.com/ibingshan/p/10767089.html