Project1
标题:
如何更改肖像图位置
[打印本页]
作者:
funxlww
时间:
2016-1-26 11:33
标题:
如何更改肖像图位置
如图
未标题-1.png
(221.48 KB, 下载次数: 17)
下载附件
保存到相册
2016-1-26 11:30 上传
,把这个肖像图移到右边
作者:
VIPArcher
时间:
2016-1-26 11:54
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号开关开启的时候是会在右边
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1