menu
 

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

0 투표
Is there any way to set up timed cooldown within Wwise? Say, a dialog event that I only want to play when triggered after every 10 seconds.
General Discussion Ben G. (140 포인트) 로 부터
This needs to be built in.

1 답변

+5 투표
 
우수 답변

Not directly. You can use a sequence container with a voice limit of 1. That sequence container contains 2 objects. The first is the dialog sound you want to play. The second object is a Wwise silence object with a duration of 10secs. Set the sequence container to continuous so that it will play the silent object immediately after the first.

The next time that sequence container is player, the Silence object will be occupying its voice limit of 1 and so you will have to wait until that Silence object finishes before that dialog object will play again.

Is that what you mean?

shameless plug for my website and this example here: http://www.dpbsound.com/1/post/2013/04/wwise-spam-prevention.html

Daniel B. (540 포인트) 로 부터
선택됨 Adrien L. (Audiokinetic) 로 부터
Ah, yes. That's the trick. Cooldowns are common enough that I thought I must be doing it wrong. Thanks though!
...