This works great in the editor, but nothing happens on the HTML5 exported version
my code:
func _notification(what):
match what:
MainLoop.NOTIFICATION_WM_FOCUS_OUT:
if $background.playing:
print('pausing background')
$background.stream_paused = true
MainLoop.NOTIFICATION_WM_FOCUS_IN:
if play_background and Settings.is_music_on():
if $background.stream_paused:
$background.stream_paused = false
print('resuming background')