切換
舊版
前往
大廳
主題

rpgmv---標題選單的位置移動

樟善 | 2016-12-03 22:04:00 | 巴幣 0 | 人氣 1068

在rpgmv的創作中,有時背景放了一張主角在中間的圖,那麼就要移動中間的選單囉!
在這個地方,就要更動位於C:\Users\使用者\Documents\Games\遊戲名\js\plugins\rpg_windows.js
這一個腳本,修改:
//開始視窗寬度
Window_TitleCommand.prototype.windowWidth = function() {
    return 120;
};

Window_TitleCommand.prototype.updatePlacement = function() {
//選單位置
    this.x = (Graphics.boxWidth - this.width) -80;
    this.y = Graphics.boxHeight - this.height - 96;
//修改之後,就可以表現這樣的畫面囉!


創作回應

更多創作