赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 1825 |
最后登录 | 2014-3-20 |
在线时间 | 31 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 31 小时
- 注册时间
- 2014-2-20
- 帖子
- 87
|
在Window_Base可以看到等级的描绘,我们可以在这里学到很多东西,先把这个翻译一下。
def draw_actor_level(actor, x, y)#这里是描绘角色等级的项目
self.contents.font.color = system_color#把字体颜色代入系统文字色这个在Window_Base76行有定义
self.contents.draw_text(x, y, 32, 32, "Lv")#写个Lv并定义矩形
self.contents.font.color = normal_color#把字体颜色代入普通文字色这个在Window_Base74行有定义
self.contents.draw_text(x + 32, y, 24, 32, actor.level.to_s, 2)
#将角色依次循环显示等级
end#结束
|
|