社区问答

欢迎来到 Audiokinetic 社区问答论坛。在此,Wwise 和 Strata 用户可互帮互助。如需我们团队直接提供协助,请前往技术支持申请单页面。若要报告问题,请在 Audiokinetic Launcher 中选择“报告错误”选项(注意,问答论坛并不会接收错误报告)。我们内部设有专门的错误报告系统,会有专人查看报告并设法解决问题。

要想尽快得到满意的解答,请在提问时注意以下几点:

  • 描述尽量具体:比如,想达到什么样的目的,或者具体哪里有问题。
  • 包含关键细节:比如,Wwise 和游戏引擎版本以及所用操作系统等等。
  • 阐明所做努力:阐明自己为了排除故障都采取了哪些措施。
  • 聚焦问题本身:聚焦于问题本身的相关技术细节,以便别人可以快速找到解决方案。

+1 投票
Hello

I, like many people it seems, am running into issues with event based packaging when using in a real world production environment.

Latest issue is lots of media not being loaded in package builds (but loading fine in editor).

Through some trial and error it seems related to switches and maybe also rtpcs..

If I have sounds inside a switch container, those media files wont be loaded in package builds of the game if I am using set switch/rtpc nodes passing in strings instead of the switch/rtpc uassets.

I assumed that we could continue to use strings for RTPC and switch nodes with strings, and that the event itself should include ALL it's media.

Is there a setting missing somewhere to make event based packaging package all the media required by an event?

Cheers
分类:General Discussion | 用户: Simon G. (1.0k 分)
I actually just ran into this issue (using 2021.1.4)

In my case, I have an RTPC controlling a switch. Media referencing that switch did not get loaded.

Setting the switch manually instead of having it follow the RTPC fixed the issue. Is this something that could be fixed, or is this a limitation of how far Unreal will check references when loading media?
You can keep using the RTPC if you want, you just have to make sure the switch is loaded. It could be as simple as having a UAkSwitchValue* property just there in a blueprint, or it could be something 'smart', that loads up whatever switch value is needed in the moment.

1个回答

+3 投票
In the Unreal Wwise integration settings, disabling the option to split switch media seemed to do the trick for me.
I had to force asset sync, clear all audio data and regenerate a few times before my "fixes" solved the problem in packages.
用户: Simon G. (220 分)
...