processing / processing-sound

Audio library for Processing built with JSyn
https://processing.org/reference/libraries/sound/
GNU Lesser General Public License v2.1
149 stars 50 forks source link

p5.Score condition never met #50

Closed m4rinos closed 4 years ago

m4rinos commented 5 years ago

In the p5.Score function, on row 10831, I believe the following line

if (arguments[i] && this.parts[i]) {

should be changed to

if (arguments[i]) {

because this.parts is only filled if the condition is met. At the moment now parts can be added to the score.

discourse.processing.org

kevinstadler commented 4 years ago

Wrong repository