Hello. I’ve been implementing FMOD into a Unity project, primarily following the lead of the video done by Shaped By Rain Studios.
One thing the video does not cover is what are the practices for carrying FMOD values between scenes, nor has any other post on this forum properly answered my questions about this.
I have a singular music track in FMOD that the composer set up with transitions set to the parameter system. The question I have is how to arrange components in Unity so that we can properly transition between these portions of the music.
Currently my Main Menu scene has a Managers game object containing an AudioManager with associated script and and FMODEvents object with the FMODEvents script where the audio information is defined from the FMOD Banks as well as an FMOD Studio Event Emitter script which sets the music to being on “Object Start”.
Is the proper course of action to ensure that the Managers object transitions between scenes, then when loading the level (or other game events) to change the parameter for the music Event? I want to be sure I’m not creating problems for myself if I go down this path.
Thanks much.