본문 바로가기
RPG Maker MV/Utility

Picture Tool -RPG Maker MV

by biud436 2018. 5. 2.


Picture Tool


Introduction

This plugin allows you to run with two types of events when a certain picture collides with some sprites.


Script Calls


This command will run some event when it collides with certain picture:


1
RS.PictureTool.runEventCollideWithPicture(picId, eventId);
cs


This command will run the common event when it collides with a picId picture:


1
RS.PictureTool.runCommonEventCollideWithPicture(picId, eventId, commonEventId);
cs


This command will run a certain event when the picture collides with a game player:


1
RS.PictureTool.runEventCollideWithPlayer(picId, eventId);
cs


This command will run a certain common event when the picture collides with a game player:


1
RS.PictureTool.runCommonEventCollideWithPlayer(picId, eventId, commonEventId);
cs


Download

Github RAW - https://github.com/biud436/MV/raw/master/RS_PictureTool.js


Version Log

2018.04.13 (v1.0.0) - First Release.

2018.04.16 (v1.0.1) - Fixed a hanging bug.

2018.04.16 (v1.0.2) - Fixed the issue that the save is not working.

2018.04.16 (v1.0.3) - Fixed the issue when the picture is deleted


Terms of Use

Free for commercial and non-commercial use.