2ちゃんねる ■掲示板に戻る■ 全部 1- 最新50    

■ このスレッドは過去ログ倉庫に格納されています

RPGツクールMV総合 14作目

581 :名前は開発中のものです。:2016/03/06(日) 10:36:29.41 ID:Wwe+/Syv.net
1文字ずつのタイプライタ演出はないが、文字数でウェイトの長さを変えるならこういうプラグインでできる。

Window_BattleLog.prototype.messageSpeed = function() {
return 16;
};

Window_BattleLog.prototype.waitAtChar = function() {
return 4;
};

Window_BattleLog.prototype.wait = function(text) {
this._waitCount = this.messageSpeed() + (text ? text.length * this.waitAtChar() : 0);
};

Window_BattleLog.prototype.addText = function(text) {
this._lines.push(text);
this.refresh();
this.wait(text);
};

高速化ボタン(決定ボタン)で早送りする速度変えるなら以下の行の3の部分をいじる

this._waitCount -= this.isFastForward() ? 3 : 1;

総レス数 1002
232 KB
新着レスの表示

掲示板に戻る 全部 前100 次100 最新50
read.cgi ver.24052200