Project1

标题: 如何在VA中显示超过4个以上的选项? [打印本页]

作者: 0newing    时间: 2013-3-3 22:01
标题: 如何在VA中显示超过4个以上的选项?
默认的最大只能显示4个选择项,现在要显示更多,应该如何处理?
另外,可以讲显示的窗口置于画面中央吗?
作者: 布里蓝    时间: 2013-3-3 23:12
对话框居中的脚本
  1. #==============================================================================
  2. # ■ Window_ChoiceList
  3. #------------------------------------------------------------------------------
  4. #  此窗口使用于事件指令中的“显示选项”的功能。
  5. #==============================================================================
  6. class Window_ChoiceList < Window_Command
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对象
  9.   #--------------------------------------------------------------------------
  10.   alias edit_initialize initialize
  11.   def initialize(message_window)
  12.     edit_initialize(message_window)
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # ● 更新窗口的位置
  16.   #--------------------------------------------------------------------------
  17.   def update_placement
  18.     self.width = [max_choice_width + 12, 96].max + padding * 2
  19.     self.width = [width, Graphics.width].min
  20.     self.height = fitting_height($game_message.choices.size)
  21.     self.x = (Graphics.width / 2) - (width / 2)
  22.     if @message_window.y >= Graphics.height / 2
  23.       self.y = @message_window.y - height
  24.     else
  25.       self.y = @message_window.y + @message_window.height
  26.     end
  27.   end
  28. end
复制代码

作者: 熊喵酱    时间: 2013-3-14 11:23
http://rpg.blue/thread-292894-1-1.html可以看一下我的教程




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