Hi, I've been following boilerplate Wwise plugin doc, and I eventually generated 2 faders (without GUI) and connected random attributes to them(using VS2022 and building by VS also). So far there was no problem, all working with DSP side as well. But, after I tried to add up resource.h and GUI (as it shows in documentation), after I build the solution again, in Wwise, I started getting "The selected Audio effects plug-in is not intalled." error. While I can see the plugin on the list, when I choose, it only shows that error on the page.
class TestFXPlugin final
: public AK::Wwise::Plugin::AudioPlugin
,public AK::Wwise::Plugin::GUIWindows, public AK::Wwise::Plugin::PluginMFCWindows<>
is the frontend class, when I leave it like that (even without other function overrides) it gives the error. It might be an initializing thing of those maybe.
I think it's GUIWindows class, if I delete that inheritance, it (at least) shows 2 basic faders without GUI
So far;
- I tried to build it with VS2019, still the same
- I changed Premake lua file and added resource header and .rc file, still the same (also it's not necessary)
- I tried building it with wp.py commands, both for Authoring and Win64, still the same error
- I didn't change any ID of the plugin xml file, but when I change it doesn't even show the previous (without GUI) version
- Also, when I comment/delete those GUI related codes, it returns to 2 basic faders (non-GUI) version and it works normally
So, how can I add that GUI functionality and what could I be missing?