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.

Run waapi script on import event

0 votes
Is there anyway to trigger custom waapi scripts based on wwise editor events?
The use case I have in mind is to automatically generate corresponding events when source files are imported
asked Jun 21, 2022 in General Discussion by Richard P. (140 points)

1 Answer

0 votes

What you could do is to start a stand-by script that is always running. The script would subscribe to ak.wwise.core.audio.imported, and execute additional WAAPI calls every time a "imported" publish is received:
https://www.audiokinetic.com/library/edge/?source=SDK&id=ak_wwise_core_audio_imported.html

You may also look at ak.wwise.core.object.created. This would allow you to know when new sounds are created.  You might also be interested to ak.wwise.core.object.nameChanged

Hope this helps!

answered Jun 27, 2022 by Bernard R. (Audiokinetic) (35,110 points)
edited Jun 27, 2022 by Bernard R. (Audiokinetic)
...