赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-16 |
在线时间 | 9415 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21631
- 在线时间
- 9415 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
本帖最后由 喵呜喵5 于 2016-6-10 19:11 编辑
插入这段脚本- class Window_Message
- def draw_face(face_name, face_index, x, y, enabled = true)
- y += 5 # 根据你的需要调整这个数字
- bitmap = Cache.face(face_name)
- rect = Rect.new(face_index % 4 * 96, face_index / 4 * 96, 96, 96)
- contents.blt(x, y, bitmap, rect, enabled ? 255 : translucent_alpha)
- bitmap.dispose
- end
- end
复制代码 或者, 在 Window_Message 287 行- draw_face($game_message.face_name, $game_message.face_index, 0, 0)
复制代码 修改最后那个 0 |
评分
-
查看全部评分
|