Skip to content

Instantly share code, notes, and snippets.

@tokineco
Created October 25, 2015 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokineco/2cde22dc36f717814c9d to your computer and use it in GitHub Desktop.
Save tokineco/2cde22dc36f717814c9d to your computer and use it in GitHub Desktop.
RPGツクールMV用プラグイン タイトル画面でFPS表示をONにする
//=============================================================================
// ShowFPSOnStartup.js
//=============================================================================
/*:
* @plugindesc Turns ON the specified ShowFPS when TitleScene.
* @author tokineco
*
* @help This plugin does not provide plugin commands.
*/
/*:ja
* @plugindesc タイトル画面時にFPS表示をONにさせます
* @author tokineco
*
*
* @help このプラグインには、プラグインコマンドはありません。
*/
(function() {
var _Window_TitleCommand_initialize = Window_TitleCommand.prototype.initialize;
Window_TitleCommand.prototype.initialize = function() {
_Window_TitleCommand_initialize.call(this);
Graphics.showFps();
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment