赞 | 4 |
VIP | 211 |
好人卡 | 175 |
积分 | 7 |
经验 | 48096 |
最后登录 | 2014-1-9 |
在线时间 | 1327 小时 |
Lv2.观梦者 (?????)
- 梦石
- 0
- 星屑
- 729
- 在线时间
- 1327 小时
- 注册时间
- 2011-7-18
- 帖子
- 3184
|
本帖最后由 各种压力的猫君 于 2011-9-21 21:51 编辑
Window_Status 约37-44行:- self.contents.font.color = system_color
- self.contents.draw_text(320, 48, 80, 32, "EXP")
- self.contents.draw_text(320, 80, 80, 32, "NEXT")
- self.contents.draw_text(320, 112, 80, 32, "威望")
- self.contents.font.color = normal_color
- self.contents.draw_text(320 + 80, 48, 84, 32, @actor.exp_s, 2)
- self.contents.draw_text(320 + 80, 80, 84, 32, @actor.next_rest_exp_s, 2)
- self.contents.draw_text(320 + 80, 112, 84, 32, $game_variables[10].to_s, 2)
复制代码 其中- self.contents.draw_text(320, 112, 80, 32, "威望")
- self.contents.draw_text(320 + 80, 112, 84, 32, $game_variables[10].to_s, 2)
复制代码 这两行是后加上去的。
效果:
想要改位置的话,括号里前两项分别是x和y坐标,修改这两个值就可以了。(PS:“+80”不建议你改) |
|