Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes

Hi, under Unity Integration 2021.1.13, we have code that looks like this:

switch (configName)
{
    case AkPluginActivator.CONFIG_DEBUG:
        AkPluginActivator.ActivateDebug();
        break;
    case AkPluginActivator.CONFIG_PROFILE:
        AkPluginActivator.ActivateProfile();
        break;
    case AkPluginActivator.CONFIG_RELEASE:
        AkPluginActivator.ActivateRelease();
        break;
}


However while trying to upgrade to 2022.1.15, the methods

AkPluginActivatory.ActivateDebug(),
AkPluginActivatory.ActivateRelease(), and
AkPluginActivatory.ActivateProfile()

have been removed. I see there's now a

AkPluginActivator.ActivatePluginsForDeployment(BuildTarget,bool)

but does it do the same thing? I don't see any mention of AkPluginActivator changing in the release notes between 2021.1.13 and 2022.1.15 and I don't see any SDK documentation.

Thanks in advance,

Jeff

in General Discussion by J C. (150 points)

Please sign-in or register to answer this question.

...