RPGツクールMV総合 21作目
at GAMEDEV
407:名前は開発中のものです。
16/11/05 23:12:28.94 IvLy+FXC.net
>>384
マップの表示名に制御文字を使いたいなら、こんな風に書き換えてみては?
プラグインで上書きを推奨するけど、テストするだけなら
イベントコマンドの「スクリプト」でもおK。
Window_MapName.prototype.refresh = function() {
this.contents.clear();
if ($gameMap.displayName()) {
var width = this.contentsWidth();
this.drawBackground(0, 0, width, this.lineHeight());
this.drawTextEx($gameMap.displayName(), 0, 0);
}
};
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
1603日前に更新/247 KB
担当:undef