-
Notifications
You must be signed in to change notification settings - Fork 8
/
conversions.txt
123 lines (89 loc) · 2.88 KB
/
conversions.txt
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
How to convert hotkeys and runtime commands from 2016 to 2015/earlier:
////////////////////////////////////////////////////////////////////////////////
// Hotkeys (userHotkeys.mel (2015-) OR hotkeys/userHotkeys*.mel (2016+))
////////////////////////////////////////////////////////////////////////////////
Remove hotkeySet line
hotkeySet -source "Maya_Default" -current JH_Anim;
remove all hotkeyCtx lines
hotkeyCtx -type "Editor" -addClient "hyperShadePanel";
Replace hotkey with capital letter to use shift modifier
hotkey -keyShortcut "g" -alt -sht -name ("EulerFilterNameCommand");
^ ^^^^
-> hotkey -keyShortcut "G" -alt -name ("EulerFilterNameCommand");
^
Invalid flags:
-ctxClient
-dragPress
-sht
////////////////////////////////////////////////////////////////////////////////
// nameCommand (userNamedCommands.mel)
////////////////////////////////////////////////////////////////////////////////
nameCommand commands are equal (no new or removed lines)
nameCommand
-annotation "AckPushKeysNameCommand"
-sourceType "mel"
-command ("AckPushKeys")
AckPushKeysNameCommand;
////////////////////////////////////////////////////////////////////////////////
// runTimeCommand (userRunTimeCommands.mel)
////////////////////////////////////////////////////////////////////////////////
runTimeCommand
-annotation "Scale Selected Keys"
-category "Custom Scripts.Graph Editor"
-hotkeyCtx ""
-commandLanguage "mel"
-command ("ackPushPull \"push\";")
AckPushKeys;
Invalid flags:
-hotkeyCtx
-showInHotkeyEditor
////////////////////////////////////////////////////////////////////////////////
// Shelf files
////////////////////////////////////////////////////////////////////////////////
2016[.5]:
shelfButton
-enableCommandRepeat 1
-enable 1
-width 35
-height 35
-manage 1
-visible 1
-preventOverride 0
-annotation "Edit the references for the current scene"
-enableBackground 0
-> -highlightColor 0.321569 0.521569 0.65098
-align "center"
-label "Reference Editor"
-labelOffset 0
-> -rotation 0
-> -flipX 0
-> -flipY 0
-> -useAlpha 1
-font "plainLabelFont"
-imageOverlayLabel "RE"
-overlayLabelColor 0.8 0.8 0.8
-overlayLabelBackColor 0 0 0 0.25
-image "menuIconFile.png"
-image1 "menuIconFile.png"
-style "iconOnly"
-marginWidth 1
-marginHeight 1
-command "ReferenceEditor"
-sourceType "mel"
-commandRepeatable 1
-flat 1
;
Invalid flags:
-highlightColor
-rotation
-flipX
-flipY
-useAlpha
-menuItem
-scaleIcon
-noDefaultPopup
////////////////////////////////////////////////////////////////////////////////
// Marking menus (markingMenus/*)
////////////////////////////////////////////////////////////////////////////////
Invalid flags:
-longDivider