예제 #1
0
파일: other.py 프로젝트: adamcobabe/pymel
    def exists(self):
        node = self.plugNode()
        attr = self.plugAttr()
        if not node or not attr:
            return False

        if not cmds.objExists(node):
            return False

        # short name
        if attr in cmds.listAttr( node, shortNames=1) + cmds.listAttr( node):
            return True

        return False
예제 #2
0
    def exists(self):
        node = self.plugNode()
        attr = self.plugAttr()
        if not node or not attr:
            return False

        if not cmds.objExists(node):
            return False

        # short name
        if attr in cmds.listAttr(node, shortNames=1) + cmds.listAttr(node):
            return True

        return False
예제 #3
0
파일: other.py 프로젝트: adamcobabe/pymel
 def exists(self, **kwargs):
     "objExists"
     return bool( cmds.objExists(self, **kwargs) )
예제 #4
0
 def exists(self, **kwargs):
     "objExists"
     return bool(cmds.objExists(self, **kwargs))