赞 | 2 |
VIP | 15 |
好人卡 | 41 |
积分 | 33 |
经验 | 128560 |
最后登录 | 2024-4-2 |
在线时间 | 1120 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3298
- 在线时间
- 1120 小时
- 注册时间
- 2009-4-15
- 帖子
- 815
|
- #encoding:utf-8
- #==============================================================================
- # ■ Window_MenuStatus
- #------------------------------------------------------------------------------
- # 菜单画面中,显示队伍成员状态的窗口
- #==============================================================================
- class Window_MenuStatus < Window_Selectable
- THE_X = 40#这里修改你需要横向移动的数值,负数代表左移,正数代表右移
- #--------------------------------------------------------------------------
- # ● 绘制项目
- #--------------------------------------------------------------------------
- def draw_item(index)
- actor = $game_party.members[index]
- enabled = $game_party.battle_members.include?(actor)
- rect = item_rect(index)
- draw_item_background(index)
- draw_actor_face(actor, rect.x + 1 + THE_X, rect.y + 1, enabled)
- draw_actor_simple_status(actor, rect.x + 108 + THE_X, rect.y + line_height / 2)
- end
- end
复制代码 以上是代码,目测可能会和你现有脚本冲突,如果冲突,联系我 |
评分
-
查看全部评分
|