Map loading screen

Does anyone know how to add music to your map loading screen and if so could someone make a tutorial?

Customize map loading screen audio via Unity scripting, detailed tutorial recommended.

You can set a map’s loading screen music in the map’s level asset, using master bundle pointers to the asset. The relevant properties are: Loading_Screen_Music, Loop, and Outro.

The master bundle pointer data type points to a Unity asset (such as an audio clip) within a master bundle.

For example, PEI’s level asset is configured like this:

	"Loading_Screen_Music"
	[
		{
			"Loop" "Music/PEI_Loop.ogg"
			"Outro" "Music/PEI_Outro.wav"
		}
	]
3 Likes

Thank You this is a very detailed and easy explanation.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.