Package mrv :: Package maya :: Module all
[hide private]
[frames] | no frames]

Source Code for Module mrv.maya.all

 1  # -*- coding: utf-8 -*- 
 2  """Module importing all maya related classes into one place 
 3   
 4  :note: It will not import anything if the sphinx build system is active as it  
 5          will take too much memory ( ~2gig )""" 
 6  __docformat__ = "restructuredtext" 
 7  import sys 
 8  skip_import = sys.modules.has_key('sphinx') 
 9   
10  if not skip_import: 
11          # maya  
12          from env import * 
13          from ns import * 
14          from ref import * 
15          from scene import * 
16          from undo import * 
17           
18          # nodes 
19          from nt import * 
20           
21          if not cmds.about(batch=1): 
22                  from ui import * 
23          # END selective ui import 
24  # END selective import 
25