插件一般設定與參數名稱值 腳本

/*:
*@plugindesc type test Script
*@author JohnLin

*@param Int
*@desc This is the value of x_axis_value
*@default 90

@param Boolean
@desc This is the value of boolean
@default true
*/

/*:ja
@plugindec type test
*/

var params = PluginManager.parameters('Int');
var x_axis_value = Number(params['Int'] || 90);

var boolean = PluginManager.parameters('Boolean');
var booth_value = Number(boolean['Boolean' || true]);







留言