Project1

标题: 怎么修改物品框的复选框(Rect)大小?? [打印本页]

作者: 帅气的小白    时间: 2008-11-12 08:03
提示: 作者被禁止或删除 内容自动屏蔽
作者: 雪流星    时间: 2008-11-12 08:14
在Window_Item里面从新定义:
  1.   def item_rect(index)
  2.     rect = Rect.new(0, 0, 0, 0)
  3.     rect.width = (contents.width + @spacing) / @column_max - @spacing
  4.     rect.height = WLH
  5.     rect.x = index % @column_max * (rect.width + @spacing)
  6.     rect.y = index / @column_max * WLH
  7.     return rect
  8.   end
  9.   #--------------------------------------------------------------------------
复制代码

x, y ,width, height 自己修改计算吧
作者: 帅气的小白    时间: 2008-11-12 18:50
提示: 作者被禁止或删除 内容自动屏蔽
作者: 雪流星    时间: 2008-11-12 18:53
插在Window_Item最後一个end之前
作者: 帅气的小白    时间: 2008-11-12 19:47
提示: 作者被禁止或删除 内容自动屏蔽
作者: 雪流星    时间: 2008-11-12 21:17
我是说,你要先把上面那段脚本贴在Window_Item里面
然後
  def item_rect(index)
    rect = Rect.new(0, 0, 0, 0)
    rect.width = (contents.width + @spacing) / @column_max - @spacing
    rect.height = WLH
    rect.x = index % @column_max * (rect.width + @spacing)
    rect.y = index / @column_max * WLH
    return rect
  end
  #--------------------------------------------------------------------------



注意看红字的地方!!!!!!!!!!!!!!!!!!!!!!!!!
自己计算XY座标和宽高度
因为我不知道你的选匡需要多大 [LINE]1,#dddddd[/LINE]系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~
作者: 帅气的小白    时间: 2008-11-12 21:42
提示: 作者被禁止或删除 内容自动屏蔽




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