Project1

标题: 如何更改肖像图位置 [打印本页]

作者: funxlww    时间: 2016-1-26 11:33
标题: 如何更改肖像图位置
如图 ,把这个肖像图移到右边
作者: VIPArcher    时间: 2016-1-26 11:54
  1. class Window_Message < Window_Base
  2.   def new_page(text, pos)
  3.     contents.clear
  4.     x = !$game_switches[1] ? 0 : 432 #这里改在右边的位置,我随便写的,你自己调一调
  5.     draw_face($game_message.face_name, $game_message.face_index, x, 0)
  6.     reset_font_settings
  7.     pos[:x] = new_line_x
  8.     pos[:y] = 0
  9.     pos[:new_x] = new_line_x
  10.     pos[:height] = calc_line_height(text)
  11.     clear_flags
  12.   end
  13.   #--------------------------------------------------------------------------
  14.   # ● 获取换行位置
  15.   #--------------------------------------------------------------------------
  16.   def new_line_x
  17.     return 0 if $game_switches[1]
  18.     $game_message.face_name.empty? ? 0 : 112
  19.   end
  20. end
复制代码
未测试,理论上1号开关开启的时候是会在右边




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1