menu
 

Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

0 투표
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
General Discussion Richard P. (140 포인트) 로 부터

1 답변

0 투표

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!

Bernard R. (Audiokinetic) (35.8k 포인트) 로 부터
수정 Bernard R. (Audiokinetic) 로 부터
...