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.

Custom Wwise plugin not recognized by authoring tool

0 votes
Has anybody had any success getting the Wwise authoring tool to recognize a custom-written plugin (in C++)?

Mine does not get recognized (and does not throw any errors).

I built it following the provided documentation and the source code for AkDelay.

I can't find anything that the AkDelay code has that I don't (save the .rc/resource.h stuff I do not understand. I can't tell if this is required... It is not mentioned in the docs).

 

This is driving me crazy, any help suggestions would be much appreciated!

 

    - Max
asked Feb 17, 2017 in General Discussion by Maxwell H. (100 points)

1 Answer

0 votes

If Wwise can't load the DLL, that could be because of:

  • Missing dependency DLLs (use Dependency Walker to find the missing DLL, http://www.dependencywalker.com/)
  • DLL Entry point incorrect. Normally defined in .def file
answered Feb 21, 2017 by Bernard R. (Audiokinetic) (35,090 points)
...