menu
 

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

0 投票
(wetransfer removed because it contains a license)

here's a wetransfer with the ziped project without the audio files

 

the project works when i'm removing the interactive music hierarchy and event unit

 

But i cannot revert my changes to a previous version of the Wwise project, because last time i commited was 4 days ago, and i did a shit ton of modifications between, wich were not pushed on the dedicated Wwise GIT (fml). My project deadline is in 9 days. Can u help me out ? Also, there's nothing in the crash logs or what seems to be that, it's empty (no code / text).
分类:General Discussion | 用户: Gabriel S. (100 分)
修改于 用户:Bernard R. (Audiokinetic)

1个回答

0 投票
  • Open \Interactive Music Hierarchy\Default Work Unit in a text editor
  • Search for the two music cues below, and remove them from the XML. Be careful of removing exactly the code below, nothing more, nothing less.
  • Save
  • Try opening the project

Problem: There was a circular reference between the Music Event Cue and the Event. Both were pointing to each other, creating a Stack overflow.

Music Cue 1

<Reference>
    <Local>
        <MusicEventCue Name="" ID="{36D98E80-F16F-4AB2-A901-635F561D4E8A}" ShortID="140361249">
            <PropertyList>
                <Property Name="PlayAt" Type="Real64" Value="307.937047605414" />
            </PropertyList>
            <ReferenceList>
                <Reference Name="PostEventTarget">
                    <ObjectRef Name="play_music_encounter"
                        ID="{66ACDC19-86B8-4259-9F29-76783ED43C61}"
                        WorkUnitID="{14480C65-3627-45A6-AC87-21B0B6F60CE9}" />
                </Reference>
            </ReferenceList>
        </MusicEventCue>
    </Local>
</Reference>

Music Cue 2

<Reference>
    <Local>
        <MusicEventCue Name="" ID="{BAE0CA13-3C87-44FD-8F6C-22A91DD93044}" ShortID="365599980">
            <PropertyList>
                <Property Name="PlayAt" Type="Real64" Value="7447.41042942278" />
            </PropertyList>
            <ReferenceList>
                <Reference Name="PostEventTarget">
                    <ObjectRef Name="play_music_encounter"
                        ID="{66ACDC19-86B8-4259-9F29-76783ED43C61}"
                        WorkUnitID="{14480C65-3627-45A6-AC87-21B0B6F60CE9}" />
                </Reference>
            </ReferenceList>
        </MusicEventCue>
    </Local>
</Reference>   
 

用户: Bernard R. (Audiokinetic) (35.8k 分)
...