Project1

标题: 求助!急!修改游戏分辨率(尺寸)后对话框出现问题! [打印本页]

作者: 橙紫    时间: 2014-7-30 20:23
标题: 求助!急!修改游戏分辨率(尺寸)后对话框出现问题!

RT,修改完分辨率后连选项也看不见了,请教各位大神怎么修改对话框图片才可以显示完整……_(:з」∠)_
再求中文像素字体,游戏里显示出的新宋体12号好丑(┳_┳)... 【就跟图上一样
QAQ
作者: 喵呜喵5    时间: 2014-7-30 20:27
本帖最后由 喵呜喵5 于 2014-7-30 20:30 编辑

Window_ChoiceList 31~41行
  1.   def update_placement
  2.     self.width = [max_choice_width + 12, 96].max + padding * 2
  3.     self.width = [width, Graphics.width].min
  4.     self.height = fitting_height($game_message.choices.size)
  5.     self.x = Graphics.width - width
  6.     if @message_window.y >= Graphics.height / 2
  7.       self.y = @message_window.y - height
  8.     else
  9.       self.y = @message_window.y + @message_window.height
  10.     end
  11.   end
复制代码
改成
  1.   def update_placement
  2.     self.width = [max_choice_width + 12, 96].max + padding * 2
  3.     self.width = [width, Graphics.width].min
  4.     self.height = fitting_height($game_message.choices.size)
  5.     self.x = 0  # X坐标
  6.     self.y = 0  # Y坐标
  7.   end
复制代码
反正就这游戏分辨率也基本是告别选项窗口位置改变了,自己定一个顺眼的位置凑合用吧
作者: 橙紫    时间: 2014-7-30 20:35
喵呜喵5 发表于 2014-7-30 20:27
Window_ChoiceList 31~41行改成反正就这游戏分辨率也基本是告别选项窗口位置改变了,自己定一个顺眼的位置 ...

选项的问题解决了,再小白的请教一下……
高宽可以更改否,需要改皮肤吗……因为对话框就占了游戏的二分之一位置…Σ(っ °Д °;)っ
作者: 喵呜喵5    时间: 2014-7-30 20:37
橙紫 发表于 2014-7-30 20:35
选项的问题解决了,再小白的请教一下……
高宽可以更改否,需要改皮肤吗……因为对话框就占了游戏的二分 ...
  1. class Window_Base
  2.   def line_height
  3.     return 24
  4.   end
  5.   def standard_padding
  6.     return 12
  7.   end
  8. end
复制代码
插入脚本,修改脚本中出现的这两个数字
作者: 橙紫    时间: 2014-7-30 20:42
喵呜喵5 发表于 2014-7-30 20:37
插入脚本,修改脚本中出现的这两个数字

十分感谢^^




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