赞 | 0 |
VIP | 74 |
好人卡 | 0 |
积分 | 1 |
经验 | 9072 |
最后登录 | 2018-7-13 |
在线时间 | 59 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 59 小时
- 注册时间
- 2007-7-31
- 帖子
- 711
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- def refresh
- self.contents.font.size = 16
- self.contents.clear
- bitmap = Bitmap.new("Graphics/Pictures/妮可.png")
- src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- self.contents.blt(2, 8, bitmap, src_rect)
- bitmap = Bitmap.new("Graphics/Pictures/战斗显示.png")
- src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- self.contents.blt(44, 40, bitmap, src_rect)
- @item_max = $game_party.actors.size
- for i in 0...$game_party.actors.size
- actor = $game_party.actors[i]
- actor_x = i * 160
- self.contents.font.bold = true
- draw_actor_name(actor, actor_x+60, 4)
- self.contents.font.bold = false
- self.contents.font.color = Color.new(255, 255, 255, 255)
- draw_HP1(actor, 28, 32)
- draw_SP1(actor, 28, 48)
复制代码 请教一下,这个脚本是什么意思? |
|