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.

How to use plugin in android project?

0 votes
HI,
I want to use use RoomVerb plugin in my wwise project.
How should I use this plugin ?
First, I register this plugin.
And then ,can I hear my sound get change?
help someone can help me to fix it!

here is my code below:
 
 // Register RoomVerb FX plugin
 AKRESULT eResult1 = AK::SoundEngine::RegisterPlugin(
        AkPluginTypeEffect,
        AKCOMPANYID_AUDIOKINETIC,
        AKEFFECTID_ROOMVERB,
        CreateRoomVerbFX,
        CreateRoomVerbFXParams)
  
     AkBankID bankID; // Not used
    AKRESULT eResult = AK::SoundEngine::LoadBank("init.bnk", AK_DEFAULT_POOL_ID, bankID);
    AKRESULT eResult = AK::SoundEngine::LoadBank("MusicCallbacks.bnk", AK_DEFAULT_POOL_ID, bankID);

// Register the "Music" game object
AK::SoundEngine::RegisterGameObj( GAME_OBJECT_MUSIC, "Music" );

//Start the music
AK::SoundEngine::PostEvent( AK::EVENTS::PLAYMUSICDEMO1,
                            GAME_OBJECT_MUSIC);

AK::SoundEngine::RenderAudio();
asked May 5, 2016 in General Discussion by jean y. (100 points)

Please sign-in or register to answer this question.

...