-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathchange.py
More file actions
38 lines (24 loc) · 946 Bytes
/
change.py
File metadata and controls
38 lines (24 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from baseMelUI import *
from changeIkFk import ChangeIkFkLayout
from changeParent import ChangeParentLayout
from changeRo import ChangeRoLayout
__author__ = 'hamish@valvesoftware.com'
class ChangeLayout(MelColumnLayout):
def __init__( self, parent ):
frame = MelFrameLayout( self, l='Change Ik/Fk', cll=True, cl=False )
ChangeIkFkLayout( frame )
frame = MelFrameLayout( self, l='Change Parent', cll=True, cl=True )
ChangeParentLayout( frame )
frame = MelFrameLayout( self, l='Change Rotation Order', cll=True, cl=True )
ChangeRoLayout( frame )
class ChangeWindow(BaseMelWindow):
WINDOW_NAME = 'changeTool'
WINDOW_TITLE = 'Change Tools'
DEFAULT_SIZE = 300, 250
DEFAULT_MENU = 'Help'
FORCE_DEFAULT_SIZE = True
HELP_MENU = 'ChangeTool', __author__, 'https://intranet.valvesoftware.com/wiki/index.php/Change_Tool'
def __init__( self ):
ChangeLayout( self )
self.show()
#end