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
Global Gain UGen does not seem to disconnect itself from a local UGen when a shred is removed.
Case1: local Gain => global Gain Result: Removing this shred and adding it again adds another layer of 440Hz sinusoid and results in clipping.
global Gain globalGain; SinOsc osc => Gain localGain => globalGain => dac; while(true) { 100::ms => now; }
Case2: global Gain => local Gain Result: Removing this shred and adding it again safely results in a new 440Hz every time.
global Gain globalGain; SinOsc osc => globalGain => Gain localGain => dac; while(true) { 100::ms => now; }
Tested on Windows 11 with miniAudicle. The same behavior can be observed in Chunity. (Chunreal currently uses dummy local Gains as in Case2).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Global Gain UGen does not seem to disconnect itself from a local UGen when a shred is removed.
Case1: local Gain => global Gain
Result: Removing this shred and adding it again adds another layer of 440Hz sinusoid and results in clipping.
Case2: global Gain => local Gain
Result: Removing this shred and adding it again safely results in a new 440Hz every time.
Tested on Windows 11 with miniAudicle. The same behavior can be observed in Chunity. (Chunreal currently uses dummy local Gains as in Case2).
The text was updated successfully, but these errors were encountered: