The music manager is a simple music playing setup, idea for background music. In its current iteration it does have some limitations but it should be good for most use cases.
// Standard playing of a track list setup in the library editor window.
MusicManager.Play(Track.MyTrackList);
<aside> 💡 3.0.0 Note: There currently isn’t any editor modules or effects for the music setup as you’d commonly not need to make any edits. In future updates this may change dependant on feedback and use case examples.
</aside>
You can edit the base volume of the audio source the track list plays on. This can edit edited while a track is playing or when calling to play a tracklist.
// Standard playing of a track list with a base volume set.
MusicManager.Play(Track.MyTrackList, 0.95f);
// Edit the volume while active.
MusicManager.PlayerVolume = 0.8f;