- Joined
- May 21, 2013
- Messages
- 8,965
- Reaction score
- 3,068
- First Language
- French
- Primarily Uses
- RMMV
Simple at is Share your useful Plugin Parameters structure you imagined for other people to use!
here's mine :
don't mind to share!
here's mine :
// create a Point structure or a 'vector2'
/*:~struct~vector2:
* @param x
* @desc the x axis
* @type number
* @default 1
*
* @param y
* @desc the y axis
* @type number
* @default 1
*/
// Create the RGB structure
/*~struct~rgb:
* @param r
* @text Red
* @desc the red color
* @type number
* @min 0
* @max 255
* @default 0
*
* @param g
* @text Green
* @desc the green color
* @type number
* @min 0
* @max 255
* @default 0
*
* @param b
* @text Blue
* @desc the blue color
* @type number
* @min 0
* @max 255
* @default 0
*/
// create an struct for sound
/*:~struct~sound:
* @param filename
* @desc the audio filename
* @type file
* @dir audio/
* @default Default
*
* @param volume
* @desc the sound volume
* @type number
* @max 100
* @min 0
* @default 90
*
* @param pitch
* @desc the sound pitch
* @type number
* @max 150
* @min 50
* @default 100
*
* @param pan
* @desc the sound pan
* @type number
* @max 100
* @min -100
* @default 0
*/
don't mind to share!
Last edited: