menu
 

在 Audiokinetic 社区问答论坛上,用户可对 Wwise 和 Strata 相关问题进行提问和解答。如需从 Audiokinetic 技术支持团队获取答复,请务必使用技术支持申请单页面。

+2 投票
This isn't a question but i tried googling this stuff and I didn't get anything useful. Eventually, I figured it out so why not share it with people who might need it.

Basically there's a function on UAkComponent/UAkAudioEvent that has a HasActiveEvents() bool which fits well into any if else statement.

 

if (Actor->AkComponent->HasActiveEvents())

    UE_LOG(LogTemp, Warning, TEXT("Playing Event!"));

else

    UE_LOG(LogTemp, Warning, TEXT("No Event Playing"));

 

UE 4.24, Wwise v2019.2.2.2725
分类:General Discussion | 用户: Alejandro P. (230 分)

Please sign-in or register to answer this question.

...