Created
October 25, 2015 13:31
-
-
Save tokineco/2cde22dc36f717814c9d to your computer and use it in GitHub Desktop.
RPGツクールMV用プラグイン タイトル画面でFPS表示をONにする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//============================================================================= | |
// 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