We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The class library defines a BlockSize UGen but the plugin is called Blocksize so it doesn't work.
{SinOsc.ar(BlockSize.ir * 5) * 0.1}.play
The UGen is undocumented, & I think this error means no one has tried to use it.
Which means the plugin can be renamed to make it work?
(That's what i've done here and it's fine...)
The edit is trivial, but copied below.
Best, rd
diff --git a/server/plugins/DelayUGens.cpp b/server/plugins/DelayUGens.cpp index 30caf5b..0175f10 100644 --- a/server/plugins/DelayUGens.cpp +++ b/server/plugins/DelayUGens.cpp @@ -498,7 +498,7 @@ void RadiansPerSample_Ctor(Unit *unit, int inNumSamples) ZOUT0(0) = unit->mWorld->mFullRate.mRadiansPerSample; } -void Blocksize_Ctor(Unit *unit, int inNumSamples) +void BlockSize_Ctor(Unit *unit, int inNumSamples) { ZOUT0(0) = unit->mWorld->mFullRate.mBufLength; } @@ -7735,7 +7735,7 @@ PluginLoad(Delay) DefineInfoUnit(ControlDur); DefineInfoUnit(SubsampleOffset); DefineInfoUnit(RadiansPerSample); - DefineInfoUnit(Blocksize); + DefineInfoUnit(BlockSize); DefineInfoUnit(NumInputBuses); DefineInfoUnit(NumOutputBuses); DefineInfoUnit(NumAudioBuses);
The text was updated successfully, but these errors were encountered:
i guess with a pull request, it is more likely to get fixed.
Sorry, something went wrong.
"K. felt slightly abandoned..."
ref: #1206
Sorry K. Thanks for the fix.
No branches or pull requests
The class library defines a BlockSize UGen but the plugin is called Blocksize so it doesn't work.
The UGen is undocumented, & I think this error means no one has tried to use it.
Which means the plugin can be renamed to make it work?
(That's what i've done here and it's fine...)
The edit is trivial, but copied below.
Best,
rd
The text was updated successfully, but these errors were encountered: