Project1

标题: 菜单和选择框的位置 [打印本页]

作者: 繁华落尽丶cc    时间: 2013-2-10 13:34
标题: 菜单和选择框的位置
本帖最后由 繁华落尽丶cc 于 2013-2-11 08:31 编辑

把菜单和选择框的位置放到中间 本人脚本盲 求助怎么修改脚本

1.jpg (103.09 KB, 下载次数: 27)

1.jpg

2.jpg (46.81 KB, 下载次数: 29)

2.jpg

作者: hcm    时间: 2013-2-10 14:12
在Window_ChoiceList有
  1.   #--------------------------------------------------------------------------
  2.   # ● 初始化对象
  3.   #--------------------------------------------------------------------------
  4.   def initialize(message_window)
  5.     @message_window = message_window
  6.     super(0, 0)
  7.     self.openness = 0
  8.     deactivate
  9.   end
  10.   #--------------------------------------------------------------------------
  11.   # ● 开始输入的处理
  12.   #--------------------------------------------------------------------------
  13.   def start
  14.     update_placement
  15.     refresh
  16.     select(0)
  17.     open
  18.     activate
  19.   end
  20.   #--------------------------------------------------------------------------
  21.   # ● 更新窗口的位置
  22.   #--------------------------------------------------------------------------
  23.   def update_placement
  24.     self.width = [max_choice_width + 12, 96].max + padding * 2
  25.     self.width = [width, Graphics.width].min
  26.     self.height = fitting_height($game_message.choices.size)
  27.     self.x = Graphics.width - width
  28.     if @message_window.y >= Graphics.height / 2
  29.       self.y = @message_window.y - height
  30.     else
  31.       self.y = @message_window.y + @message_window.height
  32.     end
  33.   end
复制代码
把初始化对象的(0,0)改为数字或者self.x和self.y的值改为你想要的值试试。
作者: 945127391    时间: 2013-2-10 14:54
1.事件选择框:
在main前插入:
  1. class Window_ChoiceList < Window_Command
  2.   #--------------------------------------------------------------------------
  3.   # ● 更新窗口的位置
  4.   #--------------------------------------------------------------------------
  5.   def update_placement
  6.     self.width = [max_choice_width + 12, 96].max + padding * 2
  7.     self.width = [width, Graphics.width].min
  8.     self.height = fitting_height($game_message.choices.size)
  9.     self.x = Graphics.width / 2 - width / 2
  10.     self.y = Graphics.height / 2 - height / 2
  11.   end
  12. end
复制代码
2.菜单:
在main之前插入:
  1. class Window_MenuCommand < Window_Command
  2.   alias oi initialize
  3.   #--------------------------------------------------------------------------
  4.   # ● 初始化对象
  5.   #--------------------------------------------------------------------------
  6.   def initialize
  7.     oi
  8.     self.x = Graphics.width / 2 - width / 2
  9.     self.y = Graphics.height / 2 - height / 2
  10.   end
  11. end
复制代码
(以上全都未经测试)




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