You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-The-Horde-Multitroid/scripts/mus_current_update_volume.gml

4 lines
317 B

/// mus_current_update_volume()
if (oMusicV2.bossbgm == sndJump && audio_is_playing(oMusicV2.currentbgm)) audio_sound_gain(oMusicV2.currentbgm, global.opmusicvolume / 100, 0);
if (oMusicV2.bossbgm != sndJump && audio_is_playing(oMusicV2.bossbgm)) audio_sound_gain(oMusicV2.bossbgm, global.opmusicvolume / 100, 0);