赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-13 |
在线时间 | 9412 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21616
- 在线时间
- 9412 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
本帖最后由 喵呜喵5 于 2014-3-29 21:40 编辑
- #将本脚本插入到main以上▼ 插件脚本以下
- #立绘素材放在Graphics/m5lihui/目录下
- #立绘的文件名为队伍第一名角色的称号
- #称号发生改变时,菜单显示的立绘也会发生改变
- module Cache
- def self.m5lihui(filename)
- load_bitmap("Graphics/m5lihui/", filename)
- end
- end
- class Window_M5lihui < Window_Base
- def initialize
- super(0, 0, Graphics.width, Graphics.height)
- self.z = 200
- self.opacity = 0
- refresh
- end
- def standard_padding
- return 0
- end
- def refresh
- contents.clear
- draw_actor_lihui
- end
- def draw_actor_lihui
- bitmap = Cache.m5lihui($game_party.members[0].nickname)
- rect = Rect.new(0, 0, Graphics.width, Graphics.height)
- contents.blt(0, 0, bitmap, rect, 255)
- bitmap.dispose
- end
- end
- class Scene_Menu
- alias m5_start start
- def start
- m5_start
- @lihui_window = Window_M5lihui.new
- end
- end
复制代码
|
评分
-
查看全部评分
|