Home

RPG Maker 반Advanced Classroom › [RPG MV] 타이틀 메뉴 일부 없애기

박야옹 | 2015.12.20 03:20:39 | Skip to menu Write

타이틀 메뉴를 보면

기본적으로 '새게임','이어서하기','옵션'

이렇게 세가지 메뉴가 있는데요.

 

일부 메뉴를 없애고 싶을 땐 js 폴더의 rpg_windows.js에서 다음 구문을 찾아 수정해 줍니다.

 

Window_TitleCommand.prototype.makeCommandList = function() {
    this.addCommand(TextManager.newGame,   'newGame');
    //this.addCommand(TextManager.continue_, 'continue', this.isContinueEnabled());
    //this.addCommand(TextManager.options,   'options');
};

 

위 예시의 경우는 '새게임' 메뉴만 남기고 나머지는 없앤 것입니다.

타이틀 메뉴를 아예 없애는 플러그인은 배포되어 있는거 같은데,

일부만 안보이게 처리할 경우는 방법이 없는거 같아 찾아봤습니다.

Comment [9]

Write a comment

  • Attach Images or Files

    Maximum File Size : 0MB (Allowed extentsions : *.*)

    0 file(s) attached ( / )