Project1
标题:
角色面向NPC判断写法
[打印本页]
作者:
☆流星☆~~~
时间:
2009-8-11 19:06
提示:
作者被禁止或删除 内容自动屏蔽
作者:
★_茄孓
时间:
2009-8-11 19:20
把下面的脚本放main前
红色部分的字代替为
条件分歧内的第4页的脚本
写上
rel_dir?($game_player,$game_map.events[@event_id])
def rel_dir?(p,e)
if p.x > e.x
if p.direction == 4 && e.direction == 6
return true
end
elsif p.x < e.x
if p.direction == 6 && e.direction == 4
return true
end
end
if p.y > e.y
if p.direction == 8 && e.direction == 2
return true
end
elsif p.y < e.y
if p.direction == 2 && e.direction == 8
return true
end
end
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1