Project1

标题: 如何让角色在冰面上滑冰? [打印本页]

作者: 飘过~    时间: 2015-2-5 00:20
标题: 如何让角色在冰面上滑冰?
就像口袋妖怪冰道馆里的一样,在冰面上滑冰,撞到墙停止。。谢谢各位大神{:2_286:}
作者: 芯☆淡茹水    时间: 2015-2-5 08:57
设置移动路线--移动动画OFF--向前一步
作者: 注册会员    时间: 2015-2-5 13:17
滑冰的地图设置一个并行事件,田间分歧,当按下方向键时内容为设置移动:面朝方向前进N次,忽视障碍
作者: wolves    时间: 2015-2-6 14:06
本帖最后由 wolves 于 2015-2-6 14:07 编辑
  1. module Ice
  2. end
  3. def Ice.move
  4.   if $game_player.terrain_tag == 1 #这个可以改成其他的地形标志
  5.     case $game_player.direction
  6.     when 2
  7.       $game_player.move_down
  8.     when 4
  9.       $game_player.move_left
  10.     when 6
  11.       $game_player.move_right
  12.     when 8
  13.       $game_player.move_up
  14.     end
  15.   end
  16. end
复制代码
并行内容填Ice.move就行了,把冰的地形标志设置成1




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