Project1

标题: 请教显示的变量值对齐方式 [打印本页]

作者: z12508186    时间: 2012-2-14 00:45
标题: 请教显示的变量值对齐方式
本帖最后由 z12508186 于 2012-2-14 00:47 编辑

请教一下各位大大,如何可以调整下图中的金钱数字。。自动右对齐吖??也就是与上边的游戏时间00:00:01的01对齐。



下文是小弟新学习编写的代码。。。应该如何修改??
  1.   #--------------------------------------------------------------------------
  2.   # ● 刷新
  3.   #--------------------------------------------------------------------------
  4.   def refresh
  5.     self.contents.clear
  6.       draw_item
  7.   end
  8.   #--------------------------------------------------------------------------
  9.   # ● 描绘项目
  10. #--------------------------------------------------------------------------
  11.   def draw_item
  12.     self.contents.font.color = system_color
  13.     text1= $game_map.display_name
  14.     self.contents.draw_text(0, 0, width - 32, 20, text1, 1)
  15.     draw_icon(231,110,-4)
  16.     self.contents.font.color = normal_color
  17.     text2 = game_time
  18.     self.contents.draw_text(0, 22, width, 20, text2, 1)
  19.     draw_icon(280,110,20)
  20.     self.contents.font.color = normal_color
  21.     text3 = $game_party.gold
  22.     self.contents.draw_text(0, 42, width, 20, text3, 1)
  23.     draw_icon(361,110,40)
  24.   end
复制代码
dsu_plus_rewardpost_czw
作者: 亿万星辰    时间: 2012-2-14 07:42
draw_text的最后一个参数,0是居左为缺省值,1是居中,2是居右
作者: felixlvx    时间: 2012-2-14 10:43
@z12508186话说LZ你的字体叫什么名字呀,能不能发给我一份呀
作者: z12508186    时间: 2012-2-14 10:46
felixlvx 发表于 2012-2-14 10:43
@z12508186话说LZ你的字体叫什么名字呀,能不能发给我一份呀

在我的网盘里有:http://115.com/file/anhooeuu#
作者: felixlvx    时间: 2012-2-14 10:57
哦哦 {:nm_4:}谢谢啊




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1