Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions Various/rxfx_Gamepad controller for REAPER.eel
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// @description Gamepad controller for REAPER
// @author Rek's Effeks
// @version 1.1
// @changelog Added Windows support and trigger scrubbing
// @version 1.1.01
// @changelog Added Windows support and (now fixed) trigger scrubbing
// @about
// Hotplug-enabled gamepad controller script for Reaper. Requires SWS extension. Simply run the script, plug in your controller and let it do its thing. DISCLAIMER: developed on Linux, so all the button codes and stuff MIGHT be different.
// Hotplug-enabled gamepad controller script for Reaper. Requires SWS extension. Simply run the script, plug in your controller and let it do its thing.
//
// Controls:
//
Expand Down Expand Up @@ -453,8 +453,9 @@ function main_loop()
//event(MIDI_CONTROL_CHANGE * 16 + CHAN, CC_JOY_L_NS, (value / 128) | 0); // MSB
//event(MIDI_CONTROL_CHANGE * 16 + CHAN, CC_JOY_L_NS + 32, value & 127); // LSB
);*/

CSurf_ScrubAmt(-4*TRIGGERS());
TRIGGERS() ? (
CSurf_ScrubAmt(-4*TRIGGERS());
);


// log the frame & rerun
Expand Down
Loading