示例#1
0
文件: node.py 项目: jonntd/japeto
 def fullPathName(self):
     if self._name:
         self._fullPathName = common.fullPathName(self._name)
         #end if
     #end if
             
     return self._fullPathName
示例#2
0
文件: node.py 项目: jonntd/japeto
 def name(self, value):
     if not isinstance(value, basestring):
         raise ValueError('%s must be a *str* or *unicode* object' % value)
     #end if
     
     if self._name:
         if cmds.objExists(self._name):
             cmds.rename(self._name, value)
         #end if
     #end if
     
     self._name = value
     self._fullPathName = common.fullPathName(self._name)
示例#3
0
文件: puppet.py 项目: jonntd/japeto
 def fullPathName(self):
     return common.fullPathName(self.__mFnNode.name())