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

0 投票

I am trying to integrate game defined auxiliary sends in a project. For which I am using below code-

TArray<AkAuxSendValue> AkReverbValues;
UAkComponent* Comp = ActiveGameObject.AkComponent.Get();
AkAuxSendValue SendValue;
SendValue.listenerID = AK_INVALID_GAME_OBJECT;
SendValue.auxBusID = AudioDevice->GetIDFromString(BusName);
SendValue.fControlValue = 1;
AkReverbValues.Add(SendValue);
AudioDevice->SetAuxSends(Comp->GetAkGameObjectID(), AkReverbValues);

But it is not sending the AuxSend.
I also tried using AK::SoundEngine::SetGameObjectAuxSendValues() but project won't build after using that and gave linking errors. I am able to use Reverb volumes but having problem through code.
分类:General Discussion | 用户: Himanshu M. (100 分)

Please sign-in or register to answer this question.

...