gibber-cc / gibber

An audiovisual live coding environment for the browser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

ianhattwick opened this issue · comments

.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

Fixed in b23fa8e. Thanks!