//=============================================================================
// master2015hp_delaytitlecommand.js
// by master2015hp
// 2018.08.31
//=============================================================================
/*:
* @plugindesc delay title command
* @author
master2015hp@gmail.com
*
* @param wait_time
* @desc waiting time in frames
* @type number
* @min 0
* @max 9999
* @default 20
*
* @help
* delay appearance of Title Commands/ modify parameters as you will/ min = 0
*
* -----------------
*
*/
var parameters = PluginManager.parameters("master2015hp_delaytitlecommand");
var cke.wait_time = parameters["wait_time"];
Scene_Title.prototype.update = function() {
this.ckex = this.ckex || 0;
this.ckex++;
if (!this.isBusy() && this.ckex > cke.wait_time) {
this._commandWindow.open();
}
Scene_Base.prototype.update.call(this);
};