You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
371 B
Python
13 lines
371 B
Python
FluidDataSetWr : UGen {
|
|
|
|
*new1 { |rate,label,buf,dataset,trig,blocking|
|
|
buf ?? {"No input buffer provided".error};
|
|
^super.new1(rate,*(FluidManipulationClient.prServerString(label.asSymbol)
|
|
++buf.asUGenInput++FluidDataSet.asUGenInput(dataset.asSymbol)++trig++blocking));
|
|
}
|
|
|
|
*kr { |label, buf, dataset,trig=1|
|
|
^this.new1(\control,label,buf,dataset,trig,1)
|
|
}
|
|
}
|