Project1

标题: 显示图片以后不能移动,不能打开菜单等。 [打印本页]

作者: 若得若失    时间: 2016-12-2 18:25
标题: 显示图片以后不能移动,不能打开菜单等。
做了一种类似日记的道具,使用道具以后会显示图片。
但主角依然可以移动和打开菜单。

就想请问如何在显示这个图片的时候,不能进行其他操作,如移动和打开菜单等,需要按下X键退出日记后,才能进行正常操作。
作者: cinderelmini    时间: 2016-12-2 20:50
窝好像在【这里4L】弄过类似的。。
不知道是不是同个问题……

作者: 泥亾    时间: 2016-12-3 16:07
打开菜单请在事件-禁用菜单里面设置
禁止移动请用VIPArcher的五行脚本
  1. class Game_Player < Game_Character
  2.   alias viparcher_move_by_input move_by_input
  3.   def move_by_input;return if $game_switches[1];viparcher_move_by_input end
  4. end
复制代码

用法:打开1号开关




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1