Package mrv :: Package maya :: Package automation
[hide private]
[frames] | no frames]

Source Code for Package mrv.maya.automation

 1  # -*- coding: utf-8 -*- 
 2  """Intiailize the automation and process framework for maya """ 
 3  __docformat__ = "restructuredtext" 
 4   
 5  #{ Initialization 
 6   
 7  # assure we only do certain things once 
 8  if 'init_done' not in locals(): 
 9          init_done = False 
10   
11  # SYSTEM INITIALIZATIONs 
12  if not init_done: 
13          pass 
14   
15  #} END initialization 
16