插件作用:设置标题

/*:
* @plugindesc v1.00 Display Multiple Menu in Title Screen.
* @author XueYu Plugins
*
* @param DisplayJumpToMap
* @desc Display Jump To Map? true/false
* @default true
*
* @param JumpToMapText
* @desc The name will be display in title screen's command window.
* @default JumpToMap
*
* @param JumpToMapId
* @desc The Id of map that you will jump to. 1,2,3...etc.
* @default 1
*
* @param JumpToMapSwitchId
* @desc The id of Switch that you will use to after jump to map.
* 1,2,3...etc. Set to 0 to disable.
* @default 0
*
* @param DisplayExit
* @desc Display exit? true/false
* @default true
*
* @param ExitText
* @desc The name will be display in title screen's command window.
* @default Exit
*
* @param MaxCols
* @desc The title screen command window MaxCols.
* @default 5
*
* @param WindowWidth
* @desc The title screen command window width.
* @default 840
*
* @param X
* @desc The x position of command window.
* default:(Graphics.boxWidth - this.width) / 2
* @default (Graphics.boxWidth - this.width) / 2
*
* @param Y
* @desc The y position of command window.
* default:Graphics.boxHeight - this.height - 96
* @default Graphics.boxHeight - this.height - 96
*
* @param WindowSkin
* @desc Default is Window, it means the window skin
* is the file img/system/Window.png.
* @default Window
*
* @param Align
* @desc left/center/right
* @default center
*
* @param TextColor
* @desc #000000-#FFFFFF or red blue green yellow etc.
* @default yellow
*
* @help
* Introduction
* This plugin allows you to place Multiple Menu command
* to your title screen.
*/

rpgmakermv(8) XY_TitleMenu插件的更多相关文章

  1. Rpgmakermv(12) gacha插件系列

    很有趣的插件,可以做扭蛋啦,抽奖啦之类的东西.... 简单的示范: a.开始抽奖画面: b.抽奖中 c.随机得到物品 d.查看收集图鉴 e.图鉴内容 1.gacha 作用: get the item ...

  2. Rpgmakermv(7) Chronus插件介绍翻译

    协议:MIT 作用:时间,有时间推进,可以设置速度,随着游戏中时间的推进,会发生昼夜改变和天气变化. ------------------------------------------------- ...

  3. Rpgmakermv(5) MiniLabel插件介绍

    ============================================================================ Introduction ========== ...

  4. Rpgmakermv(31)MOG插件与YEP的结合

    问题简述: 因为我在开发时使用了gamequestsystem(任务插件),所以必须使用YEP_mainmenumanager; 此时,我又想加个MOG_Picture插件(图片收集插件): 当他们在 ...

  5. Rpgmakermv(30) GameQuest任务插件

    插件简介: 很牛X的任务插件(个人目前用过中的) 插件用法说明 Report any bugs, editor or plugin related here: http://forums.rpgmak ...

  6. Rpgmakermv(15) PH任务插件

    插件介绍 一个用来简单显示任务阶段的任务书 使用方法 插件安装 下载js文件放置到游戏目录/plugins目录下.打开插件管理器,选择PH_QuestBook.js并开启. 插件参数 Show in ...

  7. rpgmakermv(6) YEP_ItemSynthesis.js物品合成插件

    物品合成插件. 用途?太多了呢. 低级宝石合成高级,还有装备,武器,药水等等. ============================================================ ...

  8. rpgmakermv插件(1)screenfull.js与Fullscreen.js

    本文分析游戏的全屏化处理. 引入:玩家在不同情景下可能会选择全屏游戏或窗口化游戏,所以作为开发者,应该在设置中加入全屏与否的选项. 两种插件:screenfull.js与Fullscreen.js 1 ...

  9. Rpgmakermv(38)MOG_Theatrhythm

    1.============================葡萄牙语=================================================+++ MOG - Theatrh ...

随机推荐

  1. Flink – WindowedStream

    在WindowedStream上可以执行,如reduce,aggregate,min,max等操作 关键是要理解windowOperator对KVState的运用,因为window是用它来存储wind ...

  2. LeetCode 706 Design HashMap 解题报告

    题目要求 Design a HashMap without using any built-in hash table libraries. To be specific, your design s ...

  3. LeetCode 693 Binary Number with Alternating Bits 解题报告

    题目要求 Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits w ...

  4. linux md5sum命令

    md5sum命令用于生成和校验文件的md5值 生成文件md5值 [root@cdncenter ~]# ll total -rw-r--r-- root root Oct : .txt -rw-r-- ...

  5. LATCH_EX

    Description: This wait type occurs when a thread is waiting for access to a non-page data structure ...

  6. NYOJ 最长公共子序列

    # include<iostream> # include<string> # include<stdio.h> using namespace std; ][]; ...

  7. Redis入门到高可用(六)—— 字符串

    一.结构和命令 1.字符串键值结构 key是字符串,value可以是字符串.数字.二进制.json等: redis的key和string类型value限制均为512MB. 2.使用场景 ♦️ 缓存 ♦ ...

  8. BBS项目

    一.需求分析 1.首页(显示文章) 文章详情 点赞,点踩 文章评论(子评论,评论的展示) 登录功能(图片验证码) 注册功能(基于form验证,ajax) 个人站点(不同人不同样式,文章过滤) 后台管理 ...

  9. ORM之视图层

    1.request对象 前台POST传来的数据,包装到POST字典中request.POST 前台浏览器窗口携带的数据,包装到GET字典中request.GET 前台请求的方式,request.met ...

  10. 使用Python自带difflib模块进行文件内容差异对比

    difflib_text.py #!/usr/bin/python import difflib import sys try: textfile1=sys.argv[1] textfile2=sys ...