Do "global music" ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Schweini

Hello!
I wanna have Music in every scene. That means when I switch scene that the music keeps on playing.
How do I do that?

:bust_in_silhouette: Reply From: Dooowy.

Autoload Singleton - from Godot API 3.1
Are always loaded, no matter which scene is currently running
Can handle switching scenes and between-scene transitions

You could make a Persistent node. You can do that by having an Autoload Singleton.

They work exactly like any node, however it’s always loaded into memory, which in your case is exactly what you want.