Project1

标题: 请教下,关于系统自带对话框的头像调整? [打印本页]

作者: 狼人弟弟    时间: 2016-6-10 14:51
标题: 请教下,关于系统自带对话框的头像调整?
如题所叙,由于系统自带对话框的头像实在有些偏上,所以我打算把头像的位置往下调整一点,但我在脚本编辑器里试了不少时间,却愣是找不到
调整对话框的头像参数,特此请教下如果要调整的话,应该在哪个脚本里进行?
作者: 喵呜喵5    时间: 2016-6-10 19:10
本帖最后由 喵呜喵5 于 2016-6-10 19:11 编辑

插入这段脚本
  1. class Window_Message
  2.   def draw_face(face_name, face_index, x, y, enabled = true)
  3.     y += 5 # 根据你的需要调整这个数字
  4.     bitmap = Cache.face(face_name)
  5.     rect = Rect.new(face_index % 4 * 96, face_index / 4 * 96, 96, 96)
  6.     contents.blt(x, y, bitmap, rect, enabled ? 255 : translucent_alpha)
  7.     bitmap.dispose
  8.   end
  9. end
复制代码
或者, 在 Window_Message 287 行
  1. draw_face($game_message.face_name, $game_message.face_index, 0, 0)
复制代码
修改最后那个 0




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