赞 | 5 |
VIP | 71 |
好人卡 | 22 |
积分 | 6 |
经验 | 32145 |
最后登录 | 2013-8-9 |
在线时间 | 184 小时 |
Lv2.观梦者 天仙
- 梦石
- 0
- 星屑
- 625
- 在线时间
- 184 小时
- 注册时间
- 2008-4-15
- 帖子
- 5023
|
本帖最后由 雪流星 于 2009-7-7 22:30 编辑
选八个头像中的第一个
然後打开 1 号开关- class Window_Message < Window_Selectable
- def draw_face(face_name, face_index, x, y, size = 96)
- rect = Rect.new(0, 0, 96, 96)
- self.contents.clear_rect(rect)
- super
- end
- alias move_face_update update
- def update
- move_face_update
- unless (@opening or @closing) and $game_switches[1]
- name = $game_message.face_name
- index = $game_message.face_index + (Graphics.frame_count % 32)/4
- draw_face(name, index, 0, 0) if Graphics.frame_count % 8 == 0
- end
- end
- end
复制代码 |
|