赞 | 1 |
VIP | 0 |
好人卡 | 0 |
积分 | 8 |
经验 | 1085 |
最后登录 | 2019-8-3 |
在线时间 | 109 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 826
- 在线时间
- 109 小时
- 注册时间
- 2008-10-5
- 帖子
- 69
|
如果要第三个变身是不是如下列脚本?
- #encoding:utf-8
- #==============================================================================
- # ■ Window_Base
- #------------------------------------------------------------------------------
- # 游戏中所有窗口的父类
- #==============================================================================
- class Window_Base < Window
- #--------------------------------------------------------------------------
- # ● 绘制角色肖像图
- #--------------------------------------------------------------------------
- def draw_actor_face(actor, x, y, enabled = true)
- if actor.state?(27)#27为变身状态序号
- draw_face(actor.face_name, actor.face_index+2, x, y, enabled)
- elsif actor.state?(26)#26为变身状态序号
- draw_face(actor.face_name, actor.face_index+1, x, y, enabled)
- elsif actor.state?(28)#28为变身状态序号
- draw_face(actor.face_name, actor.face_index+3, x, y, enabled)
- else
- draw_face(actor.face_name, actor.face_index, x, y, enabled)
- end
- end
- end
复制代码 |
|