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 编辑
module Ice
end
def Ice.move
if $game_player.terrain_tag == 1 #这个可以改成其他的地形标志
case $game_player.direction
when 2
$game_player.move_down
when 4
$game_player.move_left
when 6
$game_player.move_right
when 8
$game_player.move_up
end
end
end
复制代码
并行内容填Ice.move就行了,把冰的地形标志设置成1
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1