RPG MAKER VX 怎么改字体?还有开头的图片?
2个回答
展开全部
狠高兴为您服务!(客套话)
您只需要将字库放在游戏文件夹下的 Fonts 文件夹下直接调用,而不需要将其安装至系统当中。
如果您不会的话,请参照以下操作:
日文——
Quote:
把Main里面的:
unless Font.exist?("UmePlus Gothic")
print "UmePlus Gothic 见。"
exit
end
替换为:
Font.default_name = (["黑体","宋体"])
英文——
直接在begin前加上:
Font.default_name = (["黑体","宋体"])
==========================================================
以上为预设字体变更 下面是改变战斗讯息的文字的颜色
==========================================================
Window_BattleMessage倒数最后两句
self.contents.font.color = normal_color
self.contents.draw_text(rect, @lines[index])
替换成
替换成
self.contents.font.color = normal_color
text = @lines[index].clone
while ((c = text.slice!(/./m)) != nil)
# \C[n] 的情况下
if c == "\001"
# 更改文字色
text.sub!(/\[([0-9]+)\]/, "")
color = $1.to_i
if color >= 0 and color <= 31
self.contents.font.color = text_color(color)
else
self.contents.font.color = text_color(0)
end
# 下面的文字
next
end
c_width = contents.text_size(c).width
rect.x+= c_width
self.contents.draw_text(rect.x, rect.y, 348, 24, c)
end
您只需要将字库放在游戏文件夹下的 Fonts 文件夹下直接调用,而不需要将其安装至系统当中。
如果您不会的话,请参照以下操作:
日文——
Quote:
把Main里面的:
unless Font.exist?("UmePlus Gothic")
print "UmePlus Gothic 见。"
exit
end
替换为:
Font.default_name = (["黑体","宋体"])
英文——
直接在begin前加上:
Font.default_name = (["黑体","宋体"])
==========================================================
以上为预设字体变更 下面是改变战斗讯息的文字的颜色
==========================================================
Window_BattleMessage倒数最后两句
self.contents.font.color = normal_color
self.contents.draw_text(rect, @lines[index])
替换成
替换成
self.contents.font.color = normal_color
text = @lines[index].clone
while ((c = text.slice!(/./m)) != nil)
# \C[n] 的情况下
if c == "\001"
# 更改文字色
text.sub!(/\[([0-9]+)\]/, "")
color = $1.to_i
if color >= 0 and color <= 31
self.contents.font.color = text_color(color)
else
self.contents.font.color = text_color(0)
end
# 下面的文字
next
end
c_width = contents.text_size(c).width
rect.x+= c_width
self.contents.draw_text(rect.x, rect.y, 348, 24, c)
end
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询