じ☆ve冰风 发表于 2026-7-30 09:24:15

Title Command Exit

Title Command Exit v1.00

by Atreyo Ray

 

Introduction

A very simple script that gives back the "Quit Game" option to the title screen.

 

Features

- You can type the text you want to appear as the exit option.

 

Screenshots

http://i.imgur.com/KKgzXtT.jpg

 

How to Use

Create a .js in your project plugins folder (.../js/plugins) with the code below and use the Plugin Manager to add it to your project.
You should name it 'ARP_TitleCommandExit.js'

Alternatively, you can download the plugin with the link provided below.
For more information, watch this video: https://youtu.be/ym_qA6hO5d0?list=PLeDwqxgcpMGm40eocVtKL6owR6W8E6kyg

 

Script

Spoiler                Code:       
//=============================================================================// ARP_TitleCommandExit.js//=============================================================================/*: * @plugindesc v1.00 Adds an option in the title screen to close * game window. * @author Atreyo Ray * * @param Command Exit * @desc The text that should appear as the exit command. * @default Quit * * @help Highly recommended to show the 'exit game' option ONLY when deploying to Windows   or Mac.   For Web or mobile applications, turn the plugin off. */(function() {    var parameters = PluginManager.parameters('ARP_TitleCommandExit');    var textExit = parameters['Command Exit'];    var _Window_TitleCommand_makeCommandList =            Window_TitleCommand.prototype.makeCommandList;    Window_TitleCommand.prototype.makeCommandList = function() {        _Window_TitleCommand_makeCommandList.call(this);        this.addCommand(textExit, 'exitGame');    };    var _Scene_Title_createCommandWindow =            Scene_Title.prototype.createCommandWindow;    Scene_Title.prototype.createCommandWindow = function() {        _Scene_Title_createCommandWindow.call(this);        this._commandWindow.setHandler('exitGame', this.commandExitGame.bind(this));    };    Scene_Title.prototype.commandExitGame = function() {        this._commandWindow.close();        this.fadeOutAll();        SceneManager.exit();    };})();






 

Download
Or, you can download it here

 

 

FAQ

Q: Why should I use a 'Quit Game' option when I can simply close the window?

A: It might be interesting to have this option if you're making your game fullscreen at start. This way, players won't have to hit F4 to be able to close their game.

There's probably going to be a plugin to make a game fullscreen at start, though you can already do this simply by adding this line

"fullscreen": true,

to the 'window' object within the package.json file inside your deployed folder.

 

Credit

- You don't need to credit me.


本贴来自国际rpgmaker官方论坛作者:atreyoray处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/title-command-exit.46909/
页: [1]
查看完整版本: Title Command Exit