赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 3764 |
最后登录 | 2020-5-5 |
在线时间 | 8 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 8 小时
- 注册时间
- 2006-10-5
- 帖子
- 129
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
看了血槽绘制的视频,于是依样画葫芦写了一段绘制血槽的脚本……用的是图片,但是总给我报错
def HP(actor,x,y)
@bitmap1 =Bitmap.new("Graphics/Pictures/HP")
w1 = @bitmap1.width * actor.hp/actor.maxhp
@src_rect1 = Rect.new(0,0,w1,@bitmap1.height)
self.contents.blt(x,y,@bitmap1,@src_rect)
end
def SP(actor,x,y)
@bitmap2 =Bitmap.new("Graphics/Pictures/SP")
w2 = @bitmap2.width * actor.sp/actor.maxsp
@src_rect2 = Rect.new(0,0,w2,@bitmap2.height)
self.contents.blt(x,y,@bitmap2,@src_rect)
end
版务信息:本贴由楼主自主结贴~ |
|