I’m still working on porting the Mom Jeans module.
The VCV plugin doesn’t follow the VCV oscillator convention of initializing with a default pitch of C4, or 261.63 Hz. I wanted to modify the code to make it work that way on the MetaModule.
I changed the relevant line from:
configParam(PITCH_PARAM, 0.f, 1.f, 0.25f, Pitch);
to:
configParam(PITCH_PARAM, 0.f, 1.f, 0.61537f, Pitch);
When I build the plugin for VCV, that sets the default pitch to 261.6 Hz — close enough! But when I build it for MetaModule, the default pitch doesn’t change — it’s still a G# (a little flat) rather than a C.
Any hints on what I might be missing? It seems like the plugin adaptor should port all the defaults so I’m not sure why this isn’t working.