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

Unreal version: 4.26

Wwise Version: 2021.1.1.7601

Hi All, Thanks for helping in advance.

I'm trying to use custom-made Wwise plugin in UE4.26, but I am a bit confused by the documentation.

here is the link:https://www.audiokinetic.com/library/edge/?source=InstallGuide&id=unity_unreal_integrations_plugins

So at the bottom of this page, it says, locate the line

  • Locate this line: AddWwiseLib(Target, "AkRecorderFX")

but I didnt find anywhere that uses AddWwiseLib. 

Can anyone help me please? Thanks a lot

in General Discussion by Zilu C. (130 points)

1 Answer

0 votes

At a glance, I'd say it's probably in need of an update. Possibly adding your entry here;

private List<string> AkLibs = new List<string> 
    {
        "AkSoundEngine",
        "AkMemoryMgr",
        "AkStreamMgr",
        "AkMusicEngine",
        "AkSpatialAudio",
        "AkAudioInputSource",
        "AkVorbisDecoder",
        "AkMeterFX", // AkMeter does not have a dedicated DLL
    };

And then calling;
            AkLibs.Add("AkOpusDecoder");

I could be totally wrong, but that'd be my assumption from looking at it.
by DAVID W. (180 points)
...