-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHoudini_Hotkeys.ahk
276 lines (248 loc) · 4.36 KB
/
Houdini_Hotkeys.ahk
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
;
; AutoHotkey Version: 1.1.x
; Language: English
; Platform: Windowns 10
; Author: Nicolas Hayat (http://fxtd.free.fr/wiki/)
;
; Script Function:
; Unreal Hotkeys functionality in Houdini VOP context (you can customize this template by editing it)
; Add middle click button key on azerty key "<"
; Add hotkeys CTRL+SHIFT+C and CTRL+SHIFT+V to "Copy Parameter" and "Paste Relative References" instead of doing a right click
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive ahk_class Qt5QWindowIcon ;name of the window for Houdini in Windows
;------------------
;MULTIPLY VOP NODE
;------------------
~LButton & NumpadMult::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, multiply
Send, {enter}
Sleep 125
Click
return
;------------------
;ADD VOP NODE
;------------------
~LButton & NumpadAdd::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, add
Send, {enter}
Sleep 125
Click
return
;------------------
;SUBTRACT VOP NODE
;------------------
~LButton & NumpadSub::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, subtract
Send, {enter}
Sleep 125
Click
return
;------------------
;DIVIDE VOP NODE
;------------------
~LButton & NumpadDiv::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, divide
Send, {enter}
Sleep 125
Click
return
;------------------
;SPLIT VECTOR INTO 3 FLOAT VOP NODE
;------------------
~LButton & S::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, vector float
Send, {enter}
Sleep 125
Click
return
;------------------
;COMBINE 3 FLOAT INTO VECTOR VOP NODE
;------------------
~LButton & Numpad3::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, float vector
Send, {enter}
Sleep 125
Click
return
;------------------
; CREATE A VECTOR 4 VOP NODE
; (for vector + TIME)
;------------------
~LButton & Numpad4::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, vtv4
Send, {enter}
Sleep 125
Click
return
;------------------
;CONSTANT VOP NODE
;------------------
~LButton & C::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, constant
Send, {enter}
Sleep 125
Click
return
;------------------
;NORMALIZE VOP NODE
;------------------
~LButton & N::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, normalize
Send, {enter}
Sleep 125
Click
return
;------------------
;POWER VOP NODE
;------------------
~LButton & ^::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, power
Send, {enter}
Sleep 125
Click
return
;------------------
;PARAMETER VOP NODE
;------------------
~LButton & P::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, param
Send, {enter}
Sleep 125
Click
return
;------------------
;TURBULENT NOISE
;------------------
~LButton & T::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, turb noise
Send, {enter}
Sleep 125
Click
return
;------------------
;RAMP PARAMETER VOP NODE
;------------------
~LButton & R::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, ramp param
Send, {enter}
Sleep 125
Click
return
;------------------
;FIT RANGE VOP NODE
;------------------
~LButton & F::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, fit range
Send, {enter}
Sleep 125
Click
return
;------------------
;BIND VOP NODE
;------------------
~LButton & B::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, bind
Send, {enter}
Sleep 125
Click
return
;------------------
;BIND EXPORT VOP NODE
;------------------
~LButton & X::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, bind export
Send, {enter}
Sleep 125
Click
return
;------------------
;AAFLOW NOISE
;------------------
~LButton & A::
KeyWait LButton
Send, {Tab}
Sleep 50
Send, AA flow
Send, {enter}
Sleep 125
Click
return
;------------------
;AFFECT < + LMB to SIMULATE MIDDLE MOUSE CLICK ON LAPTOP (AZERTY KEYBOARD)
;------------------
~< & LButton::
Send, {MButton down}
KeyWait <
Send, {MButton up}
return
;------------------
;CTRL+SHIFT+C = COPY PARAMETER
;------------------
^+c::
Send, {RButton}
Sleep 50
Send, {down}{down}{down}{down}{down}{down}{down}
Send, {enter}
return
;------------------
;CTRL+SHIFT+V = PASTE RELATIVE REFERENCE
;------------------
^+v::
Send, {RButton}
Sleep 50
Send, {down}{down}{down}{down}{down}{down}{down}{down}{down}{down}
Send, {enter}
Sleep 125
; Send, {enter}
return