平常自己寫不太會用到插件參數,要什麼都能自己抓進來,所以一直沒有整理這東西,但想一想還是整理一下以後要用比較方便,不需要每次都把YEP開起來copy copy...
(1)純數字
* @param 名稱
* @type number
* @min 0
* @desc 描述
* @default 0
(2)布林
* @param 名稱
* @type boolean
* @on YES
* @off NO
* @desc 描述
* NO - false YES - true
* @default true
(3)下拉選單 (以下例子是選擇YEP的戰鬥系統)
* @param Default System
* @parent ---General---
* @type select
* @option Default Turn Battle
* @value dtb
* @option Active Turn Battle (plugin required)
* @value atb
* @option Charge Turn Battle (plugin required)
* @value ctb
* @option Standard Turn Battle (plugin required)
* @value stb
* @desc This is the default battle system your game uses.
* Default: dtb
* @default dtb
(4)多選一
* @param Command Alignment
* @parent ---Window Settings---
* @type combo
* @option left
* @option center
* @option right
* @desc Sets the text alignment for the Party/Actor Commands.
* Default: left
* @default center
(5)純文字
* @type text
(6)陣列格式的文字
* @type text[]
樹狀結構:
* @param ---Items---
* @desc
*
* @param 名稱
* @parent ---Items---
* @type number
* @min 1
* @desc 描述
* Default: 99
* @default 99
補:
原來人家早就整理過了(狂汗)
更多更詳細....