21 lines
No EOL
448 B
JavaScript
21 lines
No EOL
448 B
JavaScript
/*:ja
|
|
* @plugindesc 放置していると画面がフリーズするのを修正
|
|
* @author kido
|
|
*
|
|
* @help
|
|
* このコアスクリプトの修正を取り込みます
|
|
* https://github.com/rpgtkoolmv/corescript/pull/191
|
|
*
|
|
*/
|
|
|
|
|
|
(function () {
|
|
|
|
var _render = Graphics.render;
|
|
Graphics.render = function (stage) {
|
|
if (this._skipCount < 0) {
|
|
this._skipCount = 0;
|
|
}
|
|
_render.call(this, stage);
|
|
};
|
|
})(); |