赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
- class Window_Message < Window_Base
- def new_page(text, pos)
- contents.clear
- x = !$game_switches[1] ? 0 : 432 #这里改在右边的位置,我随便写的,你自己调一调
- draw_face($game_message.face_name, $game_message.face_index, x, 0)
- reset_font_settings
- pos[:x] = new_line_x
- pos[:y] = 0
- pos[:new_x] = new_line_x
- pos[:height] = calc_line_height(text)
- clear_flags
- end
- #--------------------------------------------------------------------------
- # ● 获取换行位置
- #--------------------------------------------------------------------------
- def new_line_x
- return 0 if $game_switches[1]
- $game_message.face_name.empty? ? 0 : 112
- end
- end
复制代码 未测试,理论上1号开关开启的时候是会在右边 |
评分
-
查看全部评分
|