赞 | 0 |
VIP | 164 |
好人卡 | 12 |
积分 | 1 |
经验 | 34544 |
最后登录 | 2023-4-22 |
在线时间 | 1552 小时 |
Lv1.梦旅人 夜天の主
- 梦石
- 0
- 星屑
- 124
- 在线时间
- 1552 小时
- 注册时间
- 2008-4-13
- 帖子
- 2347
|
在Window_BattleStatus里
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 320, 640, 160)
- self.contents = Bitmap.new(width - 32, height - 32)
- @level_up_flags = [false, false, false, false]
复制代码
之后插入:
- @sta_back = []
- @sta_output = []
- for actor_index in 1..$game_party.actors.size
- @sta_back[actor_index] = Sprite.new
- @sta_back[actor_index].bitmap = Bitmap.new("Graphics/battleheads/" + $game_party.actors[actor_index - 1].name + "_sta.png")
- @sta_back[actor_index].x = (actor_index- 1)* 160 +7 ###
- @sta_back[actor_index].y = 480 - 78 -15 ###
- @sta_back[actor_index].z = self.z + 9990*0 ###
- end
复制代码
然后将头像文件命名为角色名字+_sta.png(例如:阿尔西斯_sta.png)放到Graphics的battleheads文件夹下就好了~后面标注了“###”的部分是头像的坐标,LZ可以根据需要自行调整~
以上 |
|