求大佬ACE让这分辨率脚本全都可以用,特别是宽屏的不能用。求大佬让这分辨选项里的都可以用。谢谢
RUBY 代码
[code]#===============================================================================
# 选择分辨率脚本 updated: 11/15/2014
# 共同完成 by: Dekita 和 Venka
#===============================================================================
# Dekita's web site and available scripts:
#
www.dekyde.com
#
www.dekitarpg.wordpress.com
#===============================================================================
# Contact Venka by private message via the official RPG Maker forums here:
#
http://forums.rpgmakerweb.com/index.php?/user/2313-venka/
# The most up to date version of this script can be found here:
#
http://forums.rpgmakerweb.com/in ... n-selection-script/
#===============================================================================
# - 介绍 -
#-------------------------------------------------------------------------------
# 本脚本可以让玩家在游戏里选择分辨率。
# 在下面可以获取高分辨率的dll:
#
http://forums.rpgmakerweb.com/in ... -rpg-maker-project/
#
# 该dll非必需,但如果你不使用它则无法将游戏分辨率扩大到 640x480 以上.
#
#-------------------------------------------------------------------------------
# - 安装 -
#-------------------------------------------------------------------------------
# 本脚本还可以设定不用分辨率下使用的文件素材路径。
# 例如:在 宽屏3 (1024x640) 时,脚本会在 Graphics 文件夹里寻找一个叫 1024x640
# 的文件夹.
# 则在该分辨率下,title1的文件会使用: "Graphics/1024x640/Title1/文件名"
# 而不是原来的 "Graphics/Title1/文件名"
#
# 如果脚本在分辨率文件夹中没有找到素材,则会在默认的文件路径中寻找(避免不受分
# 辨率影响的素材重复放置)
# 所以文件夹命名要准确 :)
#
# 这是一个即插即用的脚本,请放在 "▼ 插件脚本" 之下
#
#===============================================================================
# ★☆★☆★☆★☆★☆★☆★☆★ TERMS AND CONDITIONS: ☆★☆★☆★☆★☆★☆★☆★☆★☆
#===============================================================================
# This script can be use in both commercial and non-commercial games.
# Credit must be given to Dekita and Venka.
#===============================================================================
module SelRes
#-----------------------------------------------------------------------------
# 设置分辨率
# 列表里的分辨率类型可以任意增减,长款最好设定为32的倍数,因为1个图块=32像素.
#-----------------------------------------------------------------------------
Sizes = [
# [ "名称", 宽度, 高度],
["普通1" , 544, 416],
["普通2" , 640, 480],
["普通3" , 736, 576],
["普通4" , 928, 704],
["宽屏1" , 640, 416],
["宽屏2" , 832, 544],
["宽屏3" , 1024, 640],
["宽屏4" , 1920, 960],
["宽屏5" , 1920, 1200],
]#