OSC/SuperDirt fixes (#1093)

* If note is a midi note, and it's sent together with octave to SuperDirt, then that will be wrong. instead we should to midinote whenever sure that it's a midi note.
* mapbank to work like tidal's drumFrom
* roomsize is size in SuperDirt
* fix tidal-sniffer
* export `registerControl` (but see #1098)
This commit is contained in:
Kaspars Jaudzems 2024-05-13 11:10:34 +03:00 committed by GitHub
parent 55c7f2b575
commit e268802f3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 4 deletions

View file

@ -47,7 +47,7 @@ export function createParam(names) {
return func;
}
function registerControl(names, ...aliases) {
export function registerControl(names, ...aliases) {
const name = Array.isArray(names) ? names[0] : names;
let bag = {};
bag[name] = createParam(names);