| 赞 | 424 |
| VIP | 0 |
| 好人卡 | 11 |
| 积分 | 421 |
| 经验 | 242285 |
| 最后登录 | 2026-6-23 |
| 在线时间 | 5999 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 42105
- 在线时间
- 5999 小时
- 注册时间
- 2006-11-10
- 帖子
- 7021
|
#--------------------------------------------------------------------------
# ● 項目の描画
# index : 項目番号
# color : 文字色
#--------------------------------------------------------------------------
def draw_item(index, color)
self.contents.font.color = color
y = index * 35
self.contents.draw_text(4, y, 128, 32, @commands[index])
end
改成
#--------------------------------------------------------------------------
# ● 項目の描画
# index : 項目番号
# color : 文字色
#--------------------------------------------------------------------------
def draw_item(index, color)
self.contents.font.color = color
y = index * 32
self.contents.draw_text(4, y, 128, 32, @commands[index])
end
|
|