Project1

标题: 图片标题要怎么才能兼容鼠标脚本? [打印本页]

作者: 美丽晨露    时间: 2013-11-17 23:02
标题: 图片标题要怎么才能兼容鼠标脚本?
Project17.zip (319.34 KB, 下载次数: 81)

RUBY 代码复制
  1. x,y = Mouse.get_mouse_pos #取得鼠标的xy坐标
  2.     if x>=104 and x<=256 and y>=302 and y<=444 #选项范围
  3.       if @command_index != (y-302-1)/42
  4.         $game_system.se_play($data_system.cursor_se)
  5.       end
  6.       @command_index = (y-302-1)/42 #根据y坐标求出选项
  7.     end


使用以上的获取坐标脚本,不能响应图片。
求范例内的鼠标脚本支持图片标题的响应。
作者: 美丽晨露    时间: 2013-11-19 21:15
没有人知道怎么整合或者修改吗
作者: 铃仙·优昙华院·因幡    时间: 2013-11-19 23:04
  1. x , y = Mouse.pos #取得鼠标的xy坐标
  2.     if !(x.nil? or y.nil?)
  3.       if x.between?(104, 256) and y.between?(302, 444) #选项范围
  4.         new_y = (y - 302 - 1 )/ 42
  5.         if @command_index != new_y
  6.           #$game_system.se_play($data_system.cursor_se)
  7.           @command_index = new_y #根据y坐标求出选项
  8.         end
  9.       end
  10.     end
复制代码
new_y 的计算自己改改就可以了.

另外, #$game_system.se_play($data_system.cursor_se) 你可以修改成其他的 SE 即可.




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