赞 | 11 |
VIP | 94 |
好人卡 | 57 |
积分 | 39 |
经验 | 47770 |
最后登录 | 2025-6-19 |
在线时间 | 1586 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3875
- 在线时间
- 1586 小时
- 注册时间
- 2006-5-5
- 帖子
- 2742
|
对head_name("图片名"x,y)不是很理解,请举例说一下,好吗?
另外,在Window_BattleStatus 的def refresh是下面这个样子,怎么加?
- def refresh
- self.contents.clear
- @item_max = $game_party.actors.size
- for i in 0...$game_party.actors.size
- actor = $game_party.actors[i]
- actor_x = i * 160 + 4
- draw_actor_name(actor, actor_x, 0)
- draw_actor_hp(actor, actor_x, 32, 120)
- draw_actor_sp(actor, actor_x, 64, 120)
- if @level_up_flags[i]
- self.contents.font.color = normal_color
- self.contents.draw_text(actor_x, 96, 120, 32, "LEVEL UP!")
- else
- draw_actor_state(actor, actor_x, 96)
- end
- end
复制代码 |
|