
# Play title BGM
$game_system.bgm_play($data_system.title_bgm)
Trickster said:Add this to Scene_Title Method main after this line
Code:# Play title BGM $game_system.bgm_play($data_system.title_bgm)
$game_system.bgs_play(RPG::AudioFile.new(file, volume, pitch))
where file is the filename of the bgs you want to play
volume is the volume
and pitch is the pitch
(you can leave volume and pitch off if you want)
I just tried the code you gave me. The BGS doesn't play when I'm at the title screen.Trickster said:Add this to Scene_Title Method main after this line
Code:# Play title BGM $game_system.bgm_play($data_system.title_bgm)
$game_system.bgs_play(RPG::AudioFile.new(file, volume, pitch))
where file is the filename of the bgs you want to play
volume is the volume
and pitch is the pitch
(you can leave volume and pitch off if you want)
$game_system.bgs_play(RPG::AudioFile.new("Wave"))