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
If a processor has initialization arguments, its external variables can't be resolved.
graph Mockup [[ main ]] { ... let processorNode = WavePlayer(2); ... } processor WavePlayer (int numWaves) { ... external soul::audio_samples::Stereo sound_1, sound_2; ... }
The externals hooked up correctly in the manifest file.
"externals": { "WavePlayer::sound_1": "sound_1.wav", "WavePlayer::sound_2": "sound_2.wav" }
This code works fine if I remove initialization arguments (int numWaves) from the processor.
(int numWaves)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If a processor has initialization arguments, its external variables can't be resolved.
The externals hooked up correctly in the manifest file.
This code works fine if I remove initialization arguments
(int numWaves)
from the processor.The text was updated successfully, but these errors were encountered: