我需要根据当前使用 PYMEL 的选择来基本查询和执行一些任务,例如:
from pymel.core import *
s = selected()
if (s.selType() == 'poly'):
#do something
if (s.selType() == 'surface'):
#do something
if (s.selType() == 'cv'):
#do something
if (s.selType() == 'vertex'):
#do something
if (s.selType() == 'face'):
#do something
if (s.selType() == 'edge'):
#do something
if (s.selType() == 'curve'):
#do something
我知道这selType()
不是一个实际的 pymel 函数,我还想利用 pymels api 命令,如果有意义的话,不要使用标准的 mel 命令。