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
in seq.js: scheduler.msgs.push( msg, priority > this.priority ? priority : this.priority )
priority is a boolean value of true in nearly all cases.
This ends up being send to the websocket, which probably ends up ignoring it or swallowing an exception ? ( haven't been able to figure out what it does with it )
Is this intentional ?
The text was updated successfully, but these errors were encountered:
JTriggerFish
changed the title
the sequencer sends "true" as an boolean to the websocket after every midi note ?
the sequencer sends "true" as a boolean to the websocket after every midi note ?
Oct 21, 2018
I notice that shouldExecute on sequencing objects is sometimes an integer and sometimes a boolean which I think is related.
I don't fully understand how it works though so I'm not sure what it should be.
in seq.js:
scheduler.msgs.push( msg, priority > this.priority ? priority : this.priority )
priority is a boolean value of true in nearly all cases.
This ends up being send to the websocket, which probably ends up ignoring it or swallowing an exception ? ( haven't been able to figure out what it does with it )
Is this intentional ?
The text was updated successfully, but these errors were encountered: