Project1
标题:
怎样修改RMXP游戏字体大小?
[打印本页]
作者:
shanruiwen
时间:
2012-3-3 16:20
标题:
怎样修改RMXP游戏字体大小?
我想把游戏开始时“开始”“继续”按钮的字体改大一点,不过在RGSS里找不到哪里有字体的大小 dsu_plus_rewardpost_czw
作者:
hys111111
时间:
2012-3-3 17:12
本帖最后由 hys111111 于 2012-3-3 17:15 编辑
先复制这个脚本
#==============================================================================
# ■ Window_Command
#------------------------------------------------------------------------------
# 一般的命令选择行窗口。
#==============================================================================
class Window_Command2 < Window_Selectable
#--------------------------------------------------------------------------
# ● 初始化对像
# width : 窗口的宽
# commands : 命令字符串序列
#--------------------------------------------------------------------------
def initialize(width, commands)
# 由命令的个数计算出窗口的高
super(0, 0, width, commands.size * 32 + 32)
@item_max = commands.size
@commands = commands
self.contents = Bitmap.new(width - 32, @item_max * 32)
refresh
self.index = 0
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
for i in 0...@item_max
draw_item(i, normal_color)
end
end
#--------------------------------------------------------------------------
# ● 描绘项目
# index : 项目编号
# color : 文字色
#--------------------------------------------------------------------------
def draw_item(index, color)
self.contents.font.color = color
rect = Rect.new(4, 字体大小 * index, self.contents.width - 8, 字体大小)
self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
self.contents.draw_text(rect, @commands[index])
end
#--------------------------------------------------------------------------
# ● 项目无效化
# index : 项目编号
#--------------------------------------------------------------------------
def disable_item(index)
draw_item(index, disabled_color)
end
end
复制代码
然后,Scene_Title大概41行的地方改成
@command_window = Window_Command2.new(192, [s1, s2, s3])
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1