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.
17 lines
433 B
Python
17 lines
433 B
Python
FluidBufThreadDemo : UGen{
|
|
|
|
*kr {|result, time, doneAction = 0, blocking = 0|
|
|
result = result.asUGenInput;
|
|
result.isNil.if {this.class.name+": Invalid output buffer".throw};
|
|
^this.multiNew(\control, result, time, doneAction, blocking);
|
|
}
|
|
|
|
*process { |server, result, time = 1000, action, blocking = 0 |
|
|
^FluidNRTProcess.new(
|
|
server, this, action, [result]
|
|
).process(
|
|
result, time, blocking
|
|
);
|
|
}
|
|
}
|