menu
 

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

0 投票
Hi,

We encountered no response from the game. Wwise 2019.2.15.7667, UE4.27

The reason is because UAkAudioEvent::IsReadyForAsyncPostLoad() return false, and Due to UAkMediaAssetData::IsReadyForAsyncPostLoad(), The following code:

bool UAkMediaAssetData::IsReadyForAsyncPostLoad() const

{

...

    if (bNeedsAutoloading && State == LoadState::Unloaded)
    {
        UE_LOG(LogAkAudio, Error, TEXT("UAkMediaAssetData::IsReadyForAsyncPostLoad: NeedsAutoLoading returned true, but loadstate is unloaded. Media name : %s - %u"), *GetParentMediaName(),  GetParentMediaId());
        return false;
    }

...

}

 

Please help to fix the bug. Thanks~
分类:General Discussion | 用户: yoko g. (100 分)

Please sign-in or register to answer this question.

...