menu
 

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

+2 投票

Hello,

Unity ver: 2018.2.2f1

WWise ver: 2019.1.0

I'm trying to integrate WWise events into a Unity timeline by using AK Event Tracks.

As soon as the event is defined however, the clip will disappear:

I've followed the WWise setup steps to ready the project for timeline use, this made no difference. I've also re-generated and refreshed soundbanks before timeline work and that also made no difference.

Any suggestions?

问题关闭原因: "Since upgrading to Unity 2019.2.4f1 WWise events in timelines seem to be working better."
分类:General Discussion | 用户: Pete B. (290 分)
已关闭 用户:Mads Maretty S. (Audiokinetic)

3 个回答

+1 投票
用户: Radek Karnik (990 分)
0 投票
We had this issue with a soundbank generated with values written with a . instead of a , in the values probably because the computer generatong the soundbank is in french.

 

The fix was to do this changes in AkWwiseXMLBuilder.cs:

line 114: var radius = float.Parse(node.Attributes["MaxAttenuation"].InnerText, System.Globalization.NumberStyles.Any, CultureInfo.InvariantCulture);

line 143: minDuration = float.Parse(node.Attributes["DurationMin"].InnerText, System.Globalization.NumberStyles.Any, CultureInfo.InvariantCulture);

line 158: maxDuration = float.Parse(node.Attributes["DurationMax"].InnerText, System.Globalization.NumberStyles.Any, CultureInfo.InvariantCulture);
用户: jean m. (180 分)
Thanks ! This fix worked for us with Unity 2018.4.19f1 and Wwise 2018.1.3
+1 投票

Since upgrading to Unity 2019.2.4f1 WWise events in timelines seem to be working better.

用户: Pete B. (290 分)
...