Project1

标题: 能用鼠标控制地图的方向吗? [打印本页]

作者: sghui001    时间: 2012-8-21 17:59
标题: 能用鼠标控制地图的方向吗?
  高手们,我想用鼠标控制地图。好比 玩魔兽啊,红警之类的,能用鼠标拖动 观看全图。 能实现吗? 新手求解。感激中!!
作者: 月下黄昏    时间: 2012-8-21 18:37
这种问题其实都不需要问了········当然是能啦········· 并且有专门的鼠标脚本·······

作者: 黄威华    时间: 2012-8-22 16:00
主站上面有脚步,不过问题不少
作者: 七夕小雨    时间: 2012-8-22 18:28
  1. class Scene_Map
  2. alias old update
  3. def update
  4.    @by = 32 #感应鼠标边缘的范围
  5.    @speed = 64 #移动速度
  6.    mx,my = Mouse.get_mouse_pos
  7.    move_r if mx>640-@by
  8.    move_l if mx<@by
  9.    move_u if my<@by
  10.    move_d if my>480-@by
  11.    old
  12. end
  13. def move_r
  14.    $game_map.scroll_right(@speed)
  15. end   
  16. def move_l
  17.    $game_map.scroll_left(@speed)
  18. end   
  19. def move_u
  20.    $game_map.scroll_up(@speed)
  21. end   
  22. def move_d
  23.    $game_map.scroll_down(@speed)
  24. end  
  25. end
复制代码
插入main之前试试看
原帖传送门 http://www.66rpg.com/articles/4681
作者: W.Q.C.    时间: 2012-8-23 10:42
本帖最后由 W.Q.C. 于 2012-8-23 10:44 编辑
七夕小雨 发表于 2012-8-22 18:28
插入main之前试试看
原帖传送门 http://www.66rpg.com/articles/4681


活动需要?好吧我错了




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