设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 805|回复: 4
打印 上一主题 下一主题

开关问题!

 关闭 [复制链接]

Lv1.梦旅人

梦石
0
星屑
60
在线时间
2 小时
注册时间
2008-2-16
帖子
166
跳转到指定楼层
1
发表于 2009-1-2 02:10:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
请问如何给下面这段脚本加个开关,使开关1打开时,脚本停用?

class Scene_Map
  alias old update
  def update
    @by = 32 #感应鼠标边缘的范围
    @speed = 32 #移动速度
    mx,my = Mouse.get_mouse_pos
    move_r if mx>640-@by
    move_l if mx<@by
    move_u if my<@by
    move_d if my>480-@by
    old
  end
  def move_r
    $game_map.scroll_right(@speed)
  end  
  def move_l
    $game_map.scroll_left(@speed)
  end  
  def move_u
    $game_map.scroll_up(@speed)
  end  
  def move_d
    $game_map.scroll_down(@speed)
  end  

end

Lv1.梦旅人

梦石
0
星屑
50
在线时间
93 小时
注册时间
2008-5-16
帖子
745
2
发表于 2009-1-2 02:34:30 | 只看该作者
class Scene_Map
alias old update
def update
if $game_switches[1] == false
   @by = 32 #感应鼠标边缘的范围
   @speed = 32 #移动速度
   mx,my = Mouse.get_mouse_pos
   move_r if mx>640-@by
   move_l if mx<@by
   move_u if my<@by
   move_d if my>480-@by
   old
end
def move_r
   $game_map.scroll_right(@speed)
end  
def move_l
   $game_map.scroll_left(@speed)
end  
def move_u
   $game_map.scroll_up(@speed)
end  
def move_d
   $game_map.scroll_down(@speed)
end  
end
end
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
60
在线时间
2 小时
注册时间
2008-2-16
帖子
166
3
 楼主| 发表于 2009-1-2 04:29:03 | 只看该作者
class Scene_Map
alias old update
def update
if $game_switches[1] == false
  @by = 32 #感应鼠标边缘的范围
  @speed = 32 #移动速度
  mx,my = Mouse.get_mouse_pos
  move_r if mx>640-@by
  move_l if mx<@by
  move_u if my<@by
  move_d if my>480-@by
  old
end
def move_r
  $game_map.scroll_right(@speed)
end  
def move_l
  $game_map.scroll_left(@speed)
end  
def move_u
  $game_map.scroll_up(@speed)
end  
def move_d
  $game_map.scroll_down(@speed)
end  
end
end

开关打开后,整个画面都定住了,只有鼠标能动了。。。请问如何解决?
回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
6875
在线时间
1666 小时
注册时间
2008-10-29
帖子
6710

贵宾

4
发表于 2009-1-2 04:38:53 | 只看该作者
你知道这个脚本是干嘛的吗?
这一段是一个刷新过程,你把刷新过程停止了,画面定住是理所当然的
而且if语句的结束end是不是放错地方了?
class Scene_Map
alias old update
def update
if $game_switches[1] == false
@by = 32 #感应鼠标边缘的范围
@speed = 32 #移动速度
mx,my = Mouse.get_mouse_pos
move_r if mx>640-@by
move_l if mx<@by
move_u if my<@by
move_d if my>480-@by
end
old
end
def move_r
$game_map.scroll_right(@speed)
end  
def move_l
$game_map.scroll_left(@speed)
end  
def move_u
$game_map.scroll_up(@speed)
end  
def move_d
$game_map.scroll_down(@speed)
end  
end











你知道得太多了

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
60
在线时间
2 小时
注册时间
2008-2-16
帖子
166
5
 楼主| 发表于 2009-1-2 04:50:07 | 只看该作者
谢了啊!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2025-1-19 22:11

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表