You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
On the MultiButton docs page: "ontouchstart": "oscManager.sendOSC('/button', 'ii', this.childID, this.value)",
which (on Android at least) results in no message being received. The code that works: "ontouchstart": "oscManager.sendOSC(['/button', 'ii', this.childID, this.value])",
which matches the interface OSCManager.prototype.sendOSC = function(msg, successCallback, failureCallback) (though supplying only the first arg).