Files
virtual-controller/plugin-reaper-relearn/resources/main-presets/factory/akai/apc-mini-mk2/playtime.preset.luau
T
Paul Lipscomb 7ecc718f5d Reorganize top-level directories with clearer naming convention
app -> app-desktop-macos, presets -> app-presets, server -> remote-server,
daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn.
Updated run.py and presets.py path references accordingly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-15 17:51:05 -04:00

34 lines
1.0 KiB
Lua

--- name: APC mini mk2 - Playtime
--- realearn_version: 2.16.0-pre.8
--- author: helgoboss
--- device_manufacturer: Akai
--- device_name: APC mini mk2
--- description: |
--- This main preset turns the APC mini mk2 into a capable device for controlling Playtime. Hold Shift
--- to access advanced functions.
--- used_schemes: [akai/apc-mini-mk2]
--- required_features: [playtime]
--!strict
local commons = require("akai/apc-lib/playtime-commons")
return commons.create_compartment {
use_column_stop_buttons = true,
stop_column_if_slot_empty = true,
mute_track_button_id = "row3/play",
arm_track_button_id = "row4/play",
column_count = 8,
row_count = 8,
up_button_id = "col5/stop",
down_button_id = "col6/stop",
left_button_id = "col7/stop",
right_button_id = "col8/stop",
volume_button_id = "col1/stop",
pan_button_id = "col2/stop",
send_button_id = "col3/stop",
device_button_id = "col4/stop",
stop_all_clips_button_id = "row8/play",
stop_all_clips_need_shift = true,
}