gibber-cc / gibberwocky

Streamlined live coding for Ableton Live, Max/MSP/Jitter, and MIDI
http://gibberwocky.cc
MIT License
173 stars 11 forks source link

the sequencer sends "true" as a boolean to the websocket after every midi note ? #17

Open JTriggerFish opened 5 years ago

JTriggerFish commented 5 years ago

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 ?

JTriggerFish commented 5 years ago

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.