Untitled

 avatar
unknown
python
3 years ago
381 B
9
Indexable
class ModuleBase(object):
    def __init__(self, name):
        self.name = name
        
    def create(self):
        mc.createNode('transform', n = self.name+'_module')
        

class BipedArm(ModuleBase):
    def __init__(self, name):
        super(BipedArm, self).__init__(name)
        
    def create(self):
        print 'also'        



a = BipedArm()
Editor is loading...