- Joined
- Nov 18, 2014
- Messages
- 71
- Reaction score
- 26
- First Language
- english
- Primarily Uses
Hello everyone!
I am in need of a really simple plugin/script that plays a bgs of choice on the title screen, i tried adding it in myself in the core MV files but it likes to reset the set bgs when I change the title bgm in any fashion.
If anyone is up to this that would be great ^_^
Example:
rpg_scene.js
I am in need of a really simple plugin/script that plays a bgs of choice on the title screen, i tried adding it in myself in the core MV files but it likes to reset the set bgs when I change the title bgm in any fashion.
If anyone is up to this that would be great ^_^
Example:
rpg_scene.js
Code:
Scene_Title.prototype.playTitleMusic = function() {
AudioManager.playBgm($dataSystem.titleBgm);
//Custom BGS Add
AudioManager.playBgs($dataSystem.titleBgs);
AudioManager.stopMe();
AudioManager.stopSe();
};
