def __init__(self, **keywords): # Create library instance self.lib = cml.commonMayaLib() # Used to store data to return to client self.createdNodes = {} # Command line call self.commandlineCall(keywords)
def __init__(self,**keywords): # Create library instance self.lib = cml.commonMayaLib() # Used to store data to return to client self.createdNodes = {} # Command line call self.commandlineCall(keywords)
def __init__(self,**keywords): # common library self.commonLib = commonMayaLib.commonMayaLib() # standard names object self.sNames = standardNames.standardNames() # Used to store names of all created nodes, # to be returned when the tool is done. self.createdNodes = {} self.commandlineCall(keywords)
def __init__(self,**keywords): # standard names object self.sNames = standardNames.standardNames() # Create library instance self.lib = cml.commonMayaLib() # Store the final node names to be returned to client self.createdNodes = {} # Command line call self.commandlineCall(keywords)
def __init__(self, **keywords): # common library self.commonLib = commonMayaLib.commonMayaLib() # standard names object self.sNames = standardNames.standardNames() # Used to store names of all created nodes, # to be returned when the tool is done. self.createdNodes = {} self.commandlineCall(keywords)
def __init__(self, **keywords): # Standard names object self.sNames = standardNames.standardNames() # Common tools as a library self.lib = cml.commonMayaLib() # Used to store names of all created nodes, # to be returned when the tool is done. self.createdNodes = {} # Check if command line call self.commandlineCall(keywords)
def __init__(self,**keywords): # Standard names object self.sNames = standardNames.standardNames() # Common tools as a library self.lib = cml.commonMayaLib() # Used to store names of all created nodes, # to be returned when the tool is done. self.createdNodes = {} # Check if command line call self.commandlineCall(keywords)
def __init__(self,*args): """ Run the initial prompt method. """ #--- Main version of the rig self.version = '1.3' #--- Library of common maya functions self.lib = commonMayaLib.commonMayaLib() #--- Create standard names object self.sNames = standardNames.standardNames() self.createGUI()
def __init__(self,**keywords): # Create library instance self.lib = cml.commonMayaLib() # Create standard names instance self.sNames = standardNames.standardNames() # Used to return the name of created nodes self.createdNodes = [] # Check if command line call if len(keywords): self.commandlineCall(keywords) else: self.buildGUI()
def __init__(self, **keywords): # Create library instance self.lib = cml.commonMayaLib() # Create standard names instance self.sNames = standardNames.standardNames() # Used to return the name of created nodes self.createdNodes = [] # Check if command line call if len(keywords): self.commandlineCall(keywords) else: self.buildGUI()
def __init__(self, **keywords): """ Build the bind skeleton """ # Store command line data self.orientation = keywords['orientation'] # String, i.e. 'xyz' self.numToes = keywords['numToes'] # Create standard names object self.sNames = standardNames.standardNames() self.lib = commonMayaLib.commonMayaLib() # Store names of created joints self.bindJoints = [] self.createJoints()
def __init__(self,**keywords): """ Build the bind skeleton """ # Store command line data self.orientation = keywords['orientation'] # String, i.e. 'xyz' self.numToes = keywords['numToes'] # Create standard names object self.sNames = standardNames.standardNames() self.lib = commonMayaLib.commonMayaLib() # Store names of created joints self.bindJoints = [] self.createJoints()