Untitled

 avatar
unknown
python
4 years ago
429 B
11
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):
        super(BipedArm, self).create(self)
        print 'also'        



a = BipedArm("culo")
Editor is loading...