赞 | 0 |
VIP | 0 |
好人卡 | 1 |
积分 | 1 |
经验 | 1716 |
最后登录 | 2015-7-27 |
在线时间 | 175 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 175 小时
- 注册时间
- 2011-12-28
- 帖子
- 93
|
本帖最后由 z12508186 于 2012-2-14 00:47 编辑
请教一下各位大大,如何可以调整下图中的金钱数字。。自动右对齐吖??也就是与上边的游戏时间00:00:01的01对齐。
下文是小弟新学习编写的代码。。。应该如何修改??- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- draw_item
- end
- #--------------------------------------------------------------------------
- # ● 描绘项目
- #--------------------------------------------------------------------------
- def draw_item
- self.contents.font.color = system_color
- text1= $game_map.display_name
- self.contents.draw_text(0, 0, width - 32, 20, text1, 1)
- draw_icon(231,110,-4)
- self.contents.font.color = normal_color
- text2 = game_time
- self.contents.draw_text(0, 22, width, 20, text2, 1)
- draw_icon(280,110,20)
- self.contents.font.color = normal_color
- text3 = $game_party.gold
- self.contents.draw_text(0, 42, width, 20, text3, 1)
- draw_icon(361,110,40)
- end
复制代码 |
|