maya cmds pymel 选择 uv area(uv 面积) 为0 的面
cmds.selectType( pf=True )
cmds.polySelectConstraint( m=3, t=8, ta=True, tab=(0, 0.000010) ) # to get face with texture area between 0-0.000010
cmds.polySelectConstraint( m = 0, ta = False) # turn off the 2D area constraint
cmds.polySelectConstraint() 是很强大的命令,官方帮助文档有很多它的使用例子,需要注意的是一些模式开启后,记得在最后关闭
原文地址:https://www.cnblogs.com/ibingshan/p/10767289.html
时间: 2024-10-03 01:52:54