-
Notifications
You must be signed in to change notification settings - Fork 1
/
gui.pxr
273 lines (273 loc) · 7.15 KB
/
gui.pxr
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
@ /gui root:gui {
#%praxis.version 4.0.0-rc1
@ ./panel1 gui:panel {
.label "Live Mix"
.layout "cell 0 0 2 1"
@ ./button1 gui:button {
.label L
.binding /live/an1-fade.to
.values [array 0]
}
@ ./button2 gui:button {
.label R
.binding /live/an1-fade.to
.values [array 1]
.layout "cell 5 0"
}
@ ./h-slider1 gui:h-slider {
.label "LEFT/RIGHT"
.binding /live/mixer1.level
.minimum 0.0
.maximum 1.0
.scale 0.01
.layout "cell 1 0 4 1"
}
@ ./h-slider2 gui:h-slider {
.label Time
.binding /live/an1-fade.time
.minimum 0.0
.maximum 10.0
.scale 0.1
.layout "cell 1 1"
}
@ ./filefield1 gui:filefield {
.label Filter
.binding /live/shader-bank1.file
.layout "cell 2 1"
}
@ ./button3 gui:button {
.label R
.binding /live/shader-bank1.trigger
.values [array 1]
.layout "cell 5 1"
}
}
@ ./panel2 gui:panel {
.label Left
.layout "cell 0 1"
@ ./filefield1 gui:filefield {
.label Sample
.binding /preview1/player-1.video
.layout "cell 0 1"
}
@ ./h-slider1 gui:h-slider {
.label Speed
.binding /preview1/player-1.rate
.minimum 0.0
.maximum 5
.layout "cell 0 0"
}
@ ./xy-pad1 gui:xy-pad {
.label Position
.binding-x /preview1/player-1.align-x
.binding-y /preview1/player-1.align-y
.layout "cell 0 3"
}
@ ./h-slider2 gui:h-slider {
.label Zoom
.binding /preview1/player-1.zoom
.layout "cell 0 5"
}
@ ./button1 gui:button {
.label R
.binding /preview1/player-1.rate
.values [array 1]
.layout "cell 1 0"
}
@ ./button2 gui:button {
.label R
.binding /preview1/player-1.zoom
.values [array 1.0]
.layout "cell 1 5"
}
@ ./combobox1 gui:combobox {
.label Mode
.binding /preview1/player-1.resize-mode
.layout "cell 0 4"
}
@ ./button3 gui:button {
.label X
.binding /preview1/player-1.align-x
.values [array 0.5]
.layout "cell 1 3"
}
@ ./button4 gui:button {
.label Y
.binding /preview1/player-1.align-y
.values [array 0.5]
.layout "cell 2 3"
}
@ ./h-slider3 gui:h-slider {
.binding /preview1/player-1.position
.layout "cell 0 2"
}
@ ./button6 gui:button {
.label S
.binding /preview1/player-1.position
.values [array 0.0]
.layout "cell 1 2"
}
}
@ ./panel3 gui:panel {
.label Right
.layout "cell 2 1"
@ ./h-slider1 gui:h-slider {
.label Speed
.binding /preview2/player-1.rate
.minimum 0.0
.maximum 5
.layout "cell 0 0"
}
@ ./filefield1 gui:filefield {
.label Sample
.binding /preview2/player-1.video
.layout "cell 0 1"
}
@ ./xy-pad1 gui:xy-pad {
.label Position
.binding-x /preview2/player-1.align-x
.binding-y /preview2/player-1.align-y
.layout "cell 0 3"
}
@ ./combobox1 gui:combobox {
.label Mode
.binding /preview2/player-1.resize-mode
.layout "cell 0 4"
}
@ ./h-slider2 gui:h-slider {
.label Zoom
.binding /preview2/player-1.zoom
.layout "cell 0 5"
}
@ ./button1 gui:button {
.label R
.binding /preview2/player-1.rate
.values [array 1.0]
.layout "cell 1 0"
}
@ ./button2 gui:button {
.label R
.binding /preview2/player-1.zoom
.values [array 1.0]
.layout "cell 1 5"
}
@ ./button3 gui:button {
.label X
.binding /preview2/player-1.align-x
.values [array 0.5]
.layout "cell 1 3"
}
@ ./button4 gui:button {
.label Y
.binding /preview2/player-1.align-y
.values [array 0.5]
.layout "cell 2 3"
}
@ ./h-slider3 gui:h-slider {
.binding /preview2/player-1.position
.layout "cell 0 2"
}
@ ./button5 gui:button {
.label S
.binding /preview2/player-1.position
.values [array 0.0]
.layout "cell 1 2"
}
}
@ ./panel4 gui:panel {
.label Effect
.layout "cell 1 1"
@ ./h-slider1 gui:h-slider {
.label Level
.binding /preview1/mixer1.level
.layout "cell 0 1 4 1"
}
@ ./combobox2 gui:combobox {
.label "Color 1"
.binding /preview1/mixer1.color-1
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 0 2"
}
@ ./combobox3 gui:combobox {
.label "Color 2"
.binding /preview1/mixer1.color-2
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 1 2"
}
@ ./combobox4 gui:combobox {
.label "Color 3"
.binding /preview1/mixer1.color-3
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 0 3"
}
@ ./combobox5 gui:combobox {
.label "Color 4"
.binding /preview1/mixer1.color-4
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 1 3"
}
@ ./filefield1 gui:filefield {
.label Filter
.binding /preview1/shader-bank1.file
.layout "cell 0 0 4 1"
}
@ ./h-slider2 gui:h-slider {
.label "Aux 1"
.binding /preview1/mixer1.aux-1
.layout "cell 0 4 3 1"
}
@ ./h-slider3 gui:h-slider {
.label "Aux 2"
.binding /preview1/mixer1.aux-2
.layout "cell 0 5 2 1"
}
}
@ ./panel5 gui:panel {
.label Effect
.layout "cell 3 1"
@ ./h-slider1 gui:h-slider {
.label Level
.binding /preview2/mixer1.level
.layout "cell 0 1 4 1"
}
@ ./combobox2 gui:combobox {
.label "Color 1"
.binding /preview2/mixer1.color-1
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 0 2"
}
@ ./combobox4 gui:combobox {
.label "Color 2"
.binding /preview2/mixer1.color-2
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 1 2"
}
@ ./combobox3 gui:combobox {
.label "Color 3"
.binding /preview2/mixer1.color-3
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 0 3"
}
@ ./combobox5 gui:combobox {
.label "Color 4"
.binding /preview2/mixer1.color-4
.values [array "#5487a4" "#f6d155" "#004c8e" "#f2552c" "#96dfe4" "#edcdc2" "#88b04b" "#ce3375" "#5a7247" "#cfb095"]
.layout "cell 1 3"
}
@ ./filefield1 gui:filefield {
.label Filter
.binding /preview2/shader-bank1.file
.layout "cell 0 0 2 1"
}
@ ./h-slider2 gui:h-slider {
.label "Aux 1"
.binding /preview2/mixer1.aux-1
.layout "cell 0 4 2 1"
}
@ ./h-slider3 gui:h-slider {
.label "Aux 2"
.binding /preview2/mixer1.aux-2
.layout "cell 0 5 2 1"
}
}
}