| 赞 | 1 |
| VIP | 20 |
| 好人卡 | 8 |
| 积分 | 4 |
| 经验 | 6181 |
| 最后登录 | 2022-8-5 |
| 在线时间 | 271 小时 |
Lv2.观梦者 神隐的主犯
- 梦石
- 0
- 星屑
- 393
- 在线时间
- 271 小时
- 注册时间
- 2008-2-22
- 帖子
- 7691

|
a = 1.23
b = a.to_s.split(//)
c = 0
b.each_index do |index|
self.contents.draw_text( 0 + index * 10, 0, 120, 32, b[index])
c += 1
self.contents.draw_text( 0 + (index + c) * 10, 0, 120, 32, " ")
end
坐标什么的无视就好, self.contents.draw_text( 0 + (index + c) * 10, 0, 120, 32, " ") 就是你要的中间间隙~~~ |
评分
-
查看全部评分
|