gibber-cc / gibber

An audiovisual live coding environment for the browser
MIT License
902 stars 79 forks source link

.notec doesn't execute correctly outside of .notec.seq #72

Closed ianhattwick closed 3 years ago

ianhattwick commented 3 years ago

.notec doesn't execute correctly when called outside of .notec.seq():

bass = Synth[4]('acidBass2')
bass.decay = 2

//.note executes correctly
bass.note(2)
bass.note(1)
bass.note.seq(0,1)

//.notec 
bass.notec(14.1) //this doesn't work
bass.notec.seq([2.],1,1) //this works
charlieroberts commented 3 years ago

Fixed in b23fa8e. Thanks!