Anybody knows if you can adjust the CBG's Phase using a controller (VDJscript)?
Can you mix keyboard buttons along with controller buttons in the controller XML mapper? For instance, (Control + Shift) + JogWheel to move the CBG phase left or right?
Thanks.
Can you mix keyboard buttons along with controller buttons in the controller XML mapper? For instance, (Control + Shift) + JogWheel to move the CBG phase left or right?
Thanks.
Posté Fri 19 Oct 12 @ 6:54 pm
You need to set a global shift variable on your keyboard then query the shift on the controller as follows
[ctrl] + [shift] = "set '$cbg_shift' while_pressed"
(jogwheel) = "var '$cbg_shift' ? param_greater 0% ? adjust_cbg +10ms : adjust_cbg -10ms : touchwheel"
[ctrl] + [shift] = "set '$cbg_shift' while_pressed"
(jogwheel) = "var '$cbg_shift' ? param_greater 0% ? adjust_cbg +10ms : adjust_cbg -10ms : touchwheel"
Posté Sat 20 Oct 12 @ 12:28 am
Awesome, thanks for the pointers.
Posté Tue 23 Oct 12 @ 4:50 am