赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
本帖最后由 VIPArcher 于 2014-7-17 02:20 编辑
随便写写,在Window_MenuStatus里插入- #--------------------------------------------------------------------------
- # ● 绘制单张立绘
- #--------------------------------------------------------------------------
- def draw_HalfBody_image(image_name,x,y)
- image = Cache.load_bitmap("Graphics/System/",image_name)
- rect = Rect.new(0, 0, image.width, image.height)
- contents.blt(x, y, image, rect, 255)
- end
复制代码 然后就可以在下面的绘制里使用draw_HalfBody_image("立绘文件名",rect.x, rect.y)来显示你的立绘了
例如- #--------------------------------------------------------------------------
- # ● 绘制项目
- #--------------------------------------------------------------------------
- def draw_item(index)
- actor = $game_party.members[index]
- enabled = $game_party.battle_members.include?(actor)
- rect = item_rect(index)
- draw_HalfBody_image("DF-1",rect.x, rect.y) #显示立绘
- draw_item_background(index)
- draw_actor_face(actor, rect.x + 1, rect.y + 1, enabled)
- draw_actor_simple_status(actor, rect.x + 108, rect.y + line_height / 2)
- end
复制代码 效果就是这样的,坐标什么的我都没调整过。这个你自己弄吧。
立绘是随便拿的图片
|
评分
-
查看全部评分
|