If I run this line it produces RuntimeError:
cmds.displayColor("headsUpDisplayLabels", 16, dormant = 1)
The funny thing is it changes the color but produces error. So I can handle it with exception.
try:
cmds.displayColor("headsUpDisplayLabels", 16, dormant = 1)
except RuntimeError:
pass
I know what you are thinking: Holy crap!
So is there something I don't know? Or what?
No comments:
Post a Comment