加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 timiesea 于 2013-12-24 20:37 编辑
在默认脚本中,Game_Player类的第92有一个方法,如下所示:
def map_passable?(x, y, d) case @vehicle_type when :boat $game_map.boat_passable?(x, y) when :ship $game_map.ship_passable?(x, y) when :airship true else super end end
def map_passable?(x, y, d)
case @vehicle_type
when :boat
$game_map.boat_passable?(x, y)
when :ship
$game_map.ship_passable?(x, y)
when :airship
true
else
super
end
end
但是当我在执行flag2 = $game_player.map_passable(x, y, 2);这条语句时,弹出如下图所示的窗口,谁能告诉是怎么回事。
唉!感觉是哪个我不知道的地方出了问题。 |