Project1

标题: 怎么打开一个开关让↓方向键失效? [打印本页]

作者: L7-wind    时间: 2018-11-29 09:45
标题: 怎么打开一个开关让↓方向键失效?
就是打开开关后,在游戏场景中我按↓方向键无效,玩家不会向下移动这样,请问怎么做呢?
作者: KB.Driver    时间: 2018-11-29 10:16
本帖最后由 KB.Driver 于 2018-11-29 10:18 编辑



RUBY 代码复制
  1. module INPUT_FORBID
  2.  
  3.   SWI = 1
  4.   #1号开关开启时 无法向下移动
  5.  
  6. end
  7.  
  8.  
  9. class Game_Character
  10.   alias :cld99_move_down :move_down
  11.   #--------------------------------------------------------------------------
  12.   # ● 向下移动
  13.   #     turn_enabled : 本场地位置更改许可标志
  14.   #--------------------------------------------------------------------------
  15.   def move_down(turn_enabled = true)
  16.     cld99_move_down(turn_enabled) if !$game_switches[INPUT_FORBID::SWI]
  17.   end
  18. end

作者: L7-wind    时间: 2018-11-29 12:09
能贴出具体代码让我看看嘛?
作者: KB.Driver    时间: 2018-11-29 12:13
L7-wind 发表于 2018-11-29 12:09
能贴出具体代码让我看看嘛?

RUBY 代码复制
  1. module INPUT_FORBID
  2.  
  3.   SWI = 1
  4.   #1号开关开启时 无法向下和向左移动
  5.  
  6. end
  7.  
  8.  
  9. class Game_Character
  10.  
  11.   alias :cld99_move_down :move_down
  12.   #--------------------------------------------------------------------------
  13.   # ● 向下移动
  14.   #     turn_enabled : 本场地位置更改许可标志
  15.   #--------------------------------------------------------------------------
  16.   def move_down(turn_enabled = true)
  17.     cld99_move_down(turn_enabled) if !$game_switches[INPUT_FORBID::SWI]
  18.   end
  19.  
  20.   alias :cld99_move_left :move_left
  21.   #--------------------------------------------------------------------------
  22.   # ● 向左移动
  23.   #     turn_enabled : 本场地位置更改许可标志
  24.   #--------------------------------------------------------------------------
  25.   def move_left(turn_enabled = true)
  26.     cld99_move_left(turn_enabled) if !$game_switches[INPUT_FORBID::SWI]
  27.   end
  28.  
  29. end


就按这样加就行。
作者: L7-wind    时间: 2018-11-29 12:22
KB.Driver 发表于 2018-11-29 12:13
module INPUT_FORBID
  
  SWI = 1
  1. module INPUT_FORBID

  2.   SWI1 = 1
  3.   SWI2 = 2
  4.   #1号开关开启时 无法向下和向左移动

  5. end


  6. class Game_Character

  7.   alias :cld99_move_down :move_down
  8.   #--------------------------------------------------------------------------
  9.   # ● 向下移动
  10.   #     turn_enabled : 本场地位置更改许可标志
  11.   #--------------------------------------------------------------------------
  12.   def move_down(turn_enabled = true)
  13.     cld99_move_down(turn_enabled) if !$game_switches[INPUT_FORBID::SWI1]
  14.   end

  15.   alias :cld99_move_left :move_left
  16.   #--------------------------------------------------------------------------
  17.   # ● 向左移动
  18.   #     turn_enabled : 本场地位置更改许可标志
  19.   #--------------------------------------------------------------------------
  20.   def move_left(turn_enabled = true)
  21.     cld99_move_left(turn_enabled) if !$game_switches[INPUT_FORBID::SWI2]
  22.   end

  23. end
复制代码

emmm...我这样写无效...不能这样分开设置吗?




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