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 RM FX detune isn't modulatable
The reason for this is
if (fxdata->p[rm_unison_detune].absolute) { dphase[u] = (storage->note_to_pitch(*f[rm_carrier_freq]) * Tunings::MIDI_0_FREQ + fxdata->p[rm_unison_detune].get_extended( fxdata->p[rm_unison_detune].val.f * detune_offset[u])) * sri; } else { dphase[u] = storage->note_to_pitch(*f[rm_carrier_freq] + fxdata->p[rm_unison_detune].get_extended( fxdata->p[rm_unison_detune].val.f * detune_offset[u])) * Tunings::MIDI_0_FREQ * sri; }
We use fxdata->p[].get_extended which is fine but use it in fxdata->p[].val.f which is the value, not the modulated value.
fxdata->p[].get_extended
fxdata->p[].val.f
Replace that with
storage->note_to_pitch(*f[rm_carrier_freq] + fxdata->p[rm_unison_detune].get_extended( *f[rm_unison_detune] * detune_offset[u]))
in both places.
The text was updated successfully, but these errors were encountered:
Oh cool, I can take care of that.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
the RM FX detune isn't modulatable
The reason for this is
We use
fxdata->p[].get_extended
which is fine but use it infxdata->p[].val.f
which is the value, not the modulated value.Replace that with
in both places.
The text was updated successfully, but these errors were encountered: