Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes
(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).
in General Discussion by Gabriel S. (100 points)
edited by Bernard R. (Audiokinetic)

1 Answer

0 votes
  • 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>   
 

by Bernard R. (Audiokinetic) (35.8k points)
...