Project1
标题:
如何在VA中显示超过4个以上的选项?
[打印本页]
作者:
0newing
时间:
2013-3-3 22:01
标题:
如何在VA中显示超过4个以上的选项?
默认的最大只能显示4个选择项,现在要显示更多,应该如何处理?
另外,可以讲显示的窗口置于画面中央吗?
作者:
布里蓝
时间:
2013-3-3 23:12
对话框居中的脚本
#==============================================================================
# ■ Window_ChoiceList
#------------------------------------------------------------------------------
# 此窗口使用于事件指令中的“显示选项”的功能。
#==============================================================================
class Window_ChoiceList < Window_Command
#--------------------------------------------------------------------------
# ● 初始化对象
#--------------------------------------------------------------------------
alias edit_initialize initialize
def initialize(message_window)
edit_initialize(message_window)
end
#--------------------------------------------------------------------------
# ● 更新窗口的位置
#--------------------------------------------------------------------------
def update_placement
self.width = [max_choice_width + 12, 96].max + padding * 2
self.width = [width, Graphics.width].min
self.height = fitting_height($game_message.choices.size)
self.x = (Graphics.width / 2) - (width / 2)
if @message_window.y >= Graphics.height / 2
self.y = @message_window.y - height
else
self.y = @message_window.y + @message_window.height
end
end
end
复制代码
作者:
熊喵酱
时间:
2013-3-14 11:23
http://rpg.blue/thread-292894-1-1.html
可以看一下我的教程
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1