public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

MVNonFadeBGMforTitle

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: NonFadeBGMforTitle
  • Original author: ovate
  • Original date: March 27, 2017
  • Source thread: https://forums.rpgmakerweb.com/threads/nonfadebgmfortitle.76433/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMV)

Summary

YME_NonFadeBGMforTitle - Feb 8, 2016 Creator name: Yumineko Overview When New Game is selected from the Title Screen it proceeds to the Map Scene without fading out the title music.

Archived First Post

YME_NonFadeBGMforTitle - Feb 8, 2016

Creator name:
Yumineko

Overview

When New Game is selected from the Title Screen it proceeds to the Map Scene without fading out the title music.

Features
- Title screen music goes uninterrupted when it goes to the map scene.
- There's no plugin command.
- Short code length.

License - Public Domain, credit is not necessary
Code:
//=============================================================================
// YME_NonFadeBGMforTitle.js
//=============================================================================

/*:
 * @plugindesc When New Game is selected from the Title Screen it proceeds to the Map Scene without fading out the title music.
 * @author Yumineko
 *
 * @help There's no plugin command in particualr.
 *
 * License:
 * This plugin is licensed under public domain.
 * Free feel to use this without any restrictions, Yumineko isn't responsible for your actions.
 */

(function() {
    Scene_Title.prototype.commandNewGame = function() {
        DataManager.setupNewGame();
        this._commandWindow.close();
        //this.fadeOutAll();
        var time = this.slowFadeSpeed() / 60;
        this.startFadeOut(this.slowFadeSpeed());
        SceneManager.goto(Scene_Map);
    };
})();

You can download the js file from the thread attachment or Dropbox link: https://www.dropbox.com/s/hhegx6n4h5czikj/NonFadeBGMforTitle.js?dl=1

Features Mentioned

  • Title screen music goes uninterrupted when it goes to the map scene.
  • There's no plugin command.
  • Short code length.
  • License - Public Domain, credit is not necessary
  • Code:
  • //=============================================================================
  • // YME_NonFadeBGMforTitle.js
  • /*:
  • @plugindesc When New Game is selected from the Title Screen it proceeds to the Map Scene without fading out the title music.
  • @author Yumineko
  • @help There's no plugin command in particualr.
  • License:
  • This plugin is licensed under public domain.
  • Free feel to use this without any restrictions, Yumineko isn't responsible for your actions.
  • (function() {
  • Scene_Title.prototype.commandNewGame = function() {
  • DataManager.setupNewGame();

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

License / Terms Note

License - Public Domain, credit is not necessary Code: //============================================================================= // YME_NonFadeBGMforTitle.js

Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#039#rmmv#plugin-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar