Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes

I'm working with Unreal engine 4.14 and Wwise 2016.2.1.5995.

I have Wwise working with Unreal, it's building the banks perfect. 

I got a temp license to use REV for a project I'm working on, the license works in Wwise, but doesn't work in Unreal engine. I had a look at the "Initializing the SoundEngine" document where it says:

To use a licensed plug-in, uncomment the corresponding line of code right after the call to AK::SoundEngine::RegisterAllBuiltInPlugins()."

However "AK::SoundEngine::RegisterAllBuiltInPlugins()" doesn't exist. it must have been updated and not we cannot license the plugin. Does anyone know how I can get the plugins working?

Any help would be appreciated.

Thanks

in General Discussion by James Denholm (100 points)

2 Answers

0 votes

Have you tried to include the plugin factory headers?

#include <AK/Plugin/AllPluginsFactories.h>
by tomasito665 (220 points)
0 votes

Hi, 

I am working with UE4.15 and Wwise 2016.2.2.6022. 

I think the function AK::SoundEngine::RegisterAllBuiltInPlugins() is deprecated. 

In the file AllPluginsRegistrationHelpers.h, 

    #include <AK/Plugin/AllPluginsFactories.h>

    namespace AK
    {
        namespace SoundEngine
        {
            /// This function is deprecated.  All registration is automatic now.  Kept for backward compatibility.
            static AKRESULT RegisterAllPlugins()
            {
                return AK_Success;
            }
        }
    }

RegisterAllBuiltInPlugins() is renamed as RegisterAllPlugins(), I think... 

 

However, I still wonder how can I use the licensed plug-in. 

 

Any help would be appreciated :)

by MR H. (290 points)
...