-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRDM_DispActionOrderResult.js
47 lines (42 loc) · 1.68 KB
/
RDM_DispActionOrderResult.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
//=============================================================================
// RDM_DispActionOrderResult.js
//=============================================================================
var Imported = Imported || {};
Imported.RDM_DispActionOrderResult = true;
var Radium = Radium || {};
Radium.DAO = Radium.DAO || {};
Radium.DAO.version = 1.00;
//=============================================================================
/*:
* @plugindesc v1.00 行動後順番可視化
* @author Radian Kakudo
*
* @help
* ============================================================================
* Introduction
* ============================================================================
*
* スキル選択時に行動後の順番が見えるようになります。
* 同時、行動順アイコン上に待機時間を表示します。
* YEP_X_BattleSysCTB.js が導入されていることが前提。
*
* ============================================================================
* Changelog
* ============================================================================
*
* Version 1.00:
* - 初版
*/
//=============================================================================
Radium.DAO.Window_CTBIcon_updateRedraw = Window_CTBIcon.prototype.updateRedraw;
Window_CTBIcon.prototype.updateRedraw = function() {
if (!this._speed || this._speed != this._battler._ctbSpeed) {
this._speed = this._battler._ctbSpeed;
this._redraw = true;
}
Radium.DAO.Window_CTBIcon_updateRedraw.call(this);
var size = 30;
var width = this.iconWidth() - size + 4;
var height = this.iconHeight() - size + 4;
this.drawText(Math.round(this._battler._ctbSpeed/1000), width, height, 30, "right");
}