I’m using the API using just .NET, in a sample project. It’s working great now and I can play tracks/etc no problem. However what I want now is Adaptive music between three tracks.
I have three music files. They are all the same length/etc. One is boss, then battle, then ambient. Right now what I want to be able to do is transition between them perfectly. I am not sure how I can do this easily. Can anyone give me tips?
Right now I’m simply playing the auto on a basic channelgroup/channel. Nothing fancy has been done, Playing another track works but it restarts to the beginning of the song. I’m also hoping for fade effects so it sounds ‘ok’.
I know I could do this with two instances of FMOD and decreasing/increasing the volume but that is probably hack way of doing it. I’m sure there is a better way !
Edit: The songs are currently loaded using ‘FMODSystem.createStream’ and the loaded songs are played. I currently have one Channel. I assume I’ll need more than one channel to do this.