Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Kido's Picture Plugin Commands
- Original author: ovate
- Original date: December 3, 2020
- Source thread: https://forums.rpgmakerweb.com/threads/kidos-picture-plugin-commands.130563/
- Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMV)
Summary
PictureColorChange - 2018/08/16 To change a picture with hue and tint. You can change the hue of picture with a different color as shown in the preview. {
Archived First Post
PictureColorChange - 2018/08/16
To change a picture with hue and tint.
Feature
You can change the hue of picture with a different color as shown in the preview.
Based on the hue-ring around 360 degrees, as shown below.
For white/ black and monochrome images- changing that color won't be effected.
Plugin Command
arg0 = picture number, arg1 = angle of rotation (in degrees)
Example: RotateHue 1 180
Argument can be a control character as a variable.
Example: RotateHue \V[3] \V[4]
Another feature
You can change the picture tint.
Plugin Command
arg0 = picture number, arg1 = color value. Examples are same
Example: SetTint 1 0xFF0000
Example: SetTint 1 16711680
Argument can be a control character as a variable.
Example: SetTint \V[3] \V[4]
If you specify a value for each RGB-
arg0 = picture number | arg1, arg2, arg3 are values of rgb
Example: SetTint 1 255 0 0
Argument can be a control character as a variable.
Example: SetTint \V[3] \V[4] \V[5] \V[6]
Dropbox link: https://www.dropbox.com/s/33ijcnewmzpnjrz/PictureColorChange.js?dl=1
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
PictureChange - 2018/10/19
To change the file name by picture number with plugin command.
Plugin command
arg0 = picture number
arg1 = name of the file
Example: change 13 button2
Dropbox link: https://www.dropbox.com/s/obw58ohu95ldaz6/PictureChange.js?dl=1
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
PictureCopy - 2019/03/15
To change the picture number.
Plugin command
arg0 = picture number source
arg1 = copy destination picture number (if blank, removes)
arg2 = Leave blank or set to true. (if true, both remains)
Example: copy 13 14
Example: copy 14
Note- Kido managed to avoid flicker issue by copying the picture before changing hue/ tint. If set to true for arg2, you may want to show picture for arg 1.
Picture plugin does require the use Show Picture event.
Plugin Commands helps with event organization.
Also to cut down process if you're not using Position, Scale, and Blend.
Dropbox link: https://www.dropbox.com/s/g0e2ouf0jkybsz6/PictureCopy.js?dl=1
Credit and Thanks: kido0617
Terms of Use- Free for commercial and non-commercial use.
License- MIT License: http://opensource.org/licenses/mit-license.php
Source
https://github.com/kido0617/rpgmakerMV-plugin
To change a picture with hue and tint.
Feature
You can change the hue of picture with a different color as shown in the preview.
Based on the hue-ring around 360 degrees, as shown below.
For white/ black and monochrome images- changing that color won't be effected.
Plugin Command
Code:
RotateHue arg0 arg1
arg0 = picture number, arg1 = angle of rotation (in degrees)
Example: RotateHue 1 180
Argument can be a control character as a variable.
Example: RotateHue \V[3] \V[4]
Another feature
You can change the picture tint.
Plugin Command
Code:
SetTint arg0 arg1
arg0 = picture number, arg1 = color value. Examples are same
Example: SetTint 1 0xFF0000
Example: SetTint 1 16711680
Argument can be a control character as a variable.
Example: SetTint \V[3] \V[4]
If you specify a value for each RGB-
Code:
SetTint arg0 arg1 arg2 arg3
arg0 = picture number | arg1, arg2, arg3 are values of rgb
Example: SetTint 1 255 0 0
Argument can be a control character as a variable.
Example: SetTint \V[3] \V[4] \V[5] \V[6]
Dropbox link: https://www.dropbox.com/s/33ijcnewmzpnjrz/PictureColorChange.js?dl=1
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
PictureChange - 2018/10/19
To change the file name by picture number with plugin command.
Plugin command
Code:
change arg0 arg1
arg0 = picture number
arg1 = name of the file
Example: change 13 button2
Dropbox link: https://www.dropbox.com/s/obw58ohu95ldaz6/PictureChange.js?dl=1
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
PictureCopy - 2019/03/15
To change the picture number.
Plugin command
Code:
copy arg0 arg1 arg2
arg0 = picture number source
arg1 = copy destination picture number (if blank, removes)
arg2 = Leave blank or set to true. (if true, both remains)
Example: copy 13 14
Example: copy 14
Note- Kido managed to avoid flicker issue by copying the picture before changing hue/ tint. If set to true for arg2, you may want to show picture for arg 1.
Picture plugin does require the use Show Picture event.
Plugin Commands helps with event organization.
Also to cut down process if you're not using Position, Scale, and Blend.
Dropbox link: https://www.dropbox.com/s/g0e2ouf0jkybsz6/PictureCopy.js?dl=1
Credit and Thanks: kido0617
Terms of Use- Free for commercial and non-commercial use.
License- MIT License: http://opensource.org/licenses/mit-license.php
Source
https://github.com/kido0617/rpgmakerMV-plugin
Features Mentioned
- You can change the hue of picture with a different color as shown in the preview.
- "lightbox_close": "Close",
- "lightbox_next": "Next",
- "lightbox_previous": "Previous",
- "lightbox_error": "The requested content cannot be loaded. Please try again later.",
- "lightbox_start_slideshow": "Start slideshow",
- "lightbox_stop_slideshow": "Stop slideshow",
- "lightbox_full_screen": "Full screen",
- "lightbox_thumbnails": "Thumbnails",
- "lightbox_download": "Download",
- "lightbox_share": "Share",
- "lightbox_zoom": "Zoom",
- "lightbox_new_window": "New window",
- "lightbox_toggle_sidebar": "Toggle sidebar"
- Based on the hue-ring around 360 degrees, as shown below.
- For white/ black and monochrome images- changing that color won't be effected.
- Plugin Command
- Code:
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
Credit and Thanks: kido0617 Terms of Use- Free for commercial and non-commercial use. License- MIT License: http://opensource.org/licenses/mit-license.php Source
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...