Project1

标题: 地图按tab键放大画面,再按tab键复原正常画面 [打印本页]

作者: 1097811376    时间: 2016-1-17 23:14
标题: 地图按tab键放大画面,再按tab键复原正常画面
JAVASCRIPT 代码复制下载
  1. /*:
  2.  * @plugindesc tab_zoom
  3.  * @author 龙潭醉鬼
  4.  *
  5.  * @param id
  6.  * @desc 占用的的开关
  7.  * @default 2
  8.  *
  9.  */
  10. var Scene_Update_20160117=Scene_Map.prototype.update;
  11.  
  12. Scene_Map.prototype.update=function()
  13.  
  14. {
  15.  
  16.     Scene_Update_20160117.call(this);
  17.  
  18.     if(Input.isTriggered('tab'))
  19.  
  20.     {
  21.  
  22.         var id = parseInt(PluginManager.parameters("tab_zoom")["id"]);
  23.  
  24.         if($gameSwitches.value(id))
  25.  
  26.         {
  27.  
  28.             $gameScreen.startZoom(400,300,1,30)
  29.             $gameSwitches.setValue(id,false)
  30.  
  31.         }
  32.  
  33.  
  34.         else
  35.  
  36.         {
  37.  
  38.             $gameScreen.startZoom(400,300,1.5,30)
  39.             $gameSwitches.setValue(id,true)
  40.  
  41.         }
  42.     }
  43.  
  44. }

作者: 白嫩白嫩的    时间: 2017-5-23 20:23
大佬,抱歉挖坟了,是不是因为版本不一致,这个插件没有效果呀
作者: walf_man    时间: 2017-5-27 14:08
各种功能都有,不错啊,放大缩小可能用得着




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