赞 | 22 |
VIP | 917 |
好人卡 | 110 |
积分 | 218 |
经验 | 288474 |
最后登录 | 2022-10-15 |
在线时间 | 6925 小时 |
Lv5.捕梦者 (版主)
- 梦石
- 20
- 星屑
- 1840
- 在线时间
- 6925 小时
- 注册时间
- 2012-12-14
- 帖子
- 11485
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 美丽晨露 于 2013-3-3 17:13 编辑
我是这样写的
但是到了两位数时,数字会重叠起来
请问要怎么解决?- def draw_hit
- @hit.bitmap.clear
- @hit.bitmap.blt(40,0,hit,Rect.new(200,0,90,42))
- x = 20
- y = 0
- now = 10
- value = @game.show_hit
- while (value > 0)
- s = value % now
- @hit.bitmap.blt(x,y,hit,Rect.new(s*20,0,20,42))
- value /= 10
- now *= 10
- end
- @hit.x = 200
- @hit.y = 220
- end
复制代码 |
|