예제 #1
0
    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)
예제 #2
0
 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)
예제 #3
0
 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)
예제 #4
0
 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)
예제 #5
0
    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)
예제 #6
0
    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)
예제 #7
0
 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)
예제 #8
0
	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()
예제 #9
0
 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()
예제 #10
0
    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()
예제 #11
0
    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()
예제 #12
0
 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()