赞 | 3 |
VIP | 41 |
好人卡 | 11 |
积分 | 14 |
经验 | 61674 |
最后登录 | 2024-6-21 |
在线时间 | 500 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1365
- 在线时间
- 500 小时
- 注册时间
- 2007-4-6
- 帖子
- 451
|
把商店那里显示人物那里之间的距离缩小点就行了,也就是重新排一下,显示10个人出来!
self.contents.draw_text(0, 40*i, 240, 32, actor.name)
if actor.skill_learn?(@skill.id)
self.contents.font.color = Color.new(255,255,255,128)
self.contents.draw_text(0, 40*i, 200, 32, "此特技已经学习",2)
else
self.contents.font.color = Color.new(255,255,0,255)
self.contents.draw_text(75, 40*i, 240, 32, "此特技尚未学习")
end
end
把这段里面的40*i 改成32估计能显示出10个人,如果不行自己慢慢试。
还有刷新光标这里
#--------------------------------------------------------------------------
# ● 刷新光标矩形
#--------------------------------------------------------------------------
def update_cursor_rect
if @index < 0
self.cursor_rect.empty
else
self.cursor_rect.set(0, @index * 40, self.width - 32, 32)
end
end
end
上面是多少这里的@index * 40 就是多少! |
|