Project1

标题: 请问如何加宽对话框宽度? [打印本页]

作者: 时代之影    时间: 2011-4-14 23:55
标题: 请问如何加宽对话框宽度?
就是在人物对话的时候可用的文字版面宽度太小了,我用的是自己做的对话框,我想做出一横排都可以显示文字的效果。各位大侠请问需要修改哪里的脚本啊?dsu_plus_rewardpost_czw
作者: 街角の风铃    时间: 2011-4-15 09:19
在message那个脚本里找到super(**,**,**,**)。前两个定义对话框坐标,后两个定义大小(我只是按一般的窗口类说的,不知道对话框是否适用,你可以试试)
作者: 时代之影    时间: 2011-4-16 23:00
没有人知道么。。。。
作者: Wind2010    时间: 2011-4-17 04:44
  1. class Window_Message
  2.   unless @louse_alias
  3.     @louse_alias = true
  4.     alias louse_refresh refresh
  5.   end
  6.   def refresh
  7.     self.contents.font.size = 20
  8.     louse_refresh
  9.   end
  10. end
复制代码
不用改窗口大小吧?
作者: 时代之影    时间: 2011-4-17 12:15
回复 Wind2010 的帖子

这个代码应该复制到什么地方呢。。。。
作者: 忧雪の伤    时间: 2011-4-17 12:30
本帖最后由 忧雪の伤 于 2011-4-17 12:30 编辑
  1. class Window_Message < Window_Base
  2.   alias :old_refresh :refresh unless method_defined?("old_refresh refresh")
  3.   def refresh
  4.     self.x -= 80
  5.     self.width = 480
  6.     self.contents = Bitmap.new(width - 32, height - 32)
  7.     old_refresh
  8.   end
  9. end
复制代码





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