Project1

标题: 关于“鼠标响应”这个脚本 [打印本页]

作者: y610407721    时间: 2012-8-29 17:17
标题: 关于“鼠标响应”这个脚本
这个脚本,似乎有一个毛病,就是:当鼠标选择按钮的时候,主角也会跟着过去,有没有办法修改一下脚本,让主角不跟过去,原地不动?



=================
脚本:
  1. class Game_Picture
  2. def name=(str)
  3.    @name = str
  4. end
  5. end

  6. class Sprite_Picture
  7. alias update_old update
  8. def update
  9.    update_old
  10.    return if @picture_name == "" or @picture_name[/cmd/].nil?
  11.    mx,my = Mouse.get_mouse_pos
  12.    lx = self.x - self.ox
  13.    rx = lx + self.bitmap.width
  14.    ty = self.y - self.oy
  15.    by = ty + self.bitmap.height
  16.    if mx < lx or mx > rx or my < ty or my > by or
  17.      self.bitmap.get_pixel(mx-lx,my-ty).alpha == 0
  18.      @picture.name = @picture.name.split(/_/)[0]+"_"[email protected](/_/)[1]
  19.      return
  20.    end
  21.    if @picture.name.split(/_/)[2].nil?
  22.      @picture.name = @picture.name + "_选中"
  23.    end
  24.    if Input.trigger?(13)
  25.      @picture.name.split(/_/)[0].sub(/cmd([0-9]+)/,"")
  26.      $game_temp.common_event_id = $1.to_i
  27.    end
  28. end
  29. end
复制代码
dsu_plus_rewardpost_czw




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