forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BugFixWaitOfTextEnd.js
63 lines (57 loc) · 2.61 KB
/
BugFixWaitOfTextEnd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//=============================================================================
// BugFixWaitOfTextEnd.js
// ----------------------------------------------------------------------------
// Copyright (c) 2015-2016 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 1.0.0 2017/01/19 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc BugFixWaitOfTextEndPlugin
* @author triacontane
*
* @help メッセージウィンドウにおいてテキストの末尾にある
* ウェイト(\! \. \|)が無視されてしまう現象を修正します。
*
* さらに上記の現象に起因して、テキストの末尾に「\!」があり、
* 次の命令が「選択肢の表示」や「数値入力の処理」である場合に
* 続く「メッセージの表示」がスキップされてしまう現象を修正します。
*
* このプラグインにはプラグインコマンドはありません。
*
* This plugin is released under the MIT License.
*/
/*:ja
* @plugindesc メッセージ末尾のウェイト無視修正プラグイン
* @author トリアコンタン
*
* @help メッセージウィンドウにおいてテキストの末尾にある
* ウェイト(\! \. \|)が無視されてしまう現象を修正します。
*
* さらに上記の現象に起因して、テキストの末尾に「\!」があり、
* 次の命令が「選択肢の表示」や「数値入力の処理」である場合に
* 続く「メッセージの表示」がスキップされてしまう現象を修正します。
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function() {
'use strict';
var _Window_Message_isEndOfText = Window_Message.prototype.isEndOfText;
Window_Message.prototype.isEndOfText = function(textState) {
return !this.isWaitExist() && _Window_Message_isEndOfText.apply(this, arguments);
};
Window_Message.prototype.isWaitExist = function() {
return this.pause || this._waitCount > 0;
};
})();