Ejemplo n.º 1
0
 def __init__(self):
     window, existed = qt.createMayaWindow("Attr. Utils", False, prefs.companyName, 'Attribute utilities')
     if not existed:
         print "UI does not exist"
         createLayout(window)
         refresh(window)
         showUI()
Ejemplo n.º 2
0
 def __init__(self):
     window, existed = qt.createMayaWindow("Your awesome Tool", False, brand=prefs.companyName, tooltip='Information about your tool/brand')
     if not existed:
         print "UI does not exist"
         createLayout(window)
         createSignals(window)
         refresh(window)
         showUI()
Ejemplo n.º 3
0
 def __init__(self):
     window, existed = qt.createMayaWindow("Animation Cycler", False, brand=prefs.companyName, tooltip='Automatically copies and offsets selected animation to the other side of your character')
     if not existed:
         print "UI does not exist"
         createLayout(window)
         createSignals(window)
         refresh(window)
         showUI()