Project1

标题: 怎么改标题画面 [打印本页]

作者: 小科    时间: 2013-10-3 12:46
标题: 怎么改标题画面
RPG Maker VX Ace 怎么改标题画面啊(′·ω·`)
作者: 3106345123    时间: 2013-10-3 17:24

................
作者: 熊喵酱    时间: 2013-10-4 07:39
在Graphic文件夾的Title1或Title2 中放入要使用圖片文件
Title2 是會疊加在 Title1 上面的 可以用於Logo與標題等的
然後要設置用哪一張就是在數據庫>系統內的"標題畫面"設置
作者: tseyik    时间: 2013-10-4 11:07
本帖最后由 tseyik 于 2013-10-4 11:10 编辑


加入版権声明


  1. class Scene_Title
  2.   #--------------------------------------------------------------------------
  3.   # ● 定数
  4.   #--------------------------------------------------------------------------
  5.   Copyright = "©2013 tseyik."          # 著作権表示
  6.   #--------------------------------------------------------------------------
  7.   # ● 前景作成
  8.   #--------------------------------------------------------------------------
  9.   alias toruic_create_foreground create_foreground
  10.   def create_foreground
  11.     toruic_create_foreground
  12.     draw_copyright
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # ● 【新規】描画著作権
  16.   #--------------------------------------------------------------------------
  17.   def draw_copyright
  18.     @foreground_sprite.bitmap.font.size = 24
  19.     rect = Rect.new(0, Graphics.height - 32, Graphics.width, 24)
  20.     @foreground_sprite.bitmap.draw_text(rect, Copyright, 1)
  21.   end
  22. end
复制代码

作者: 1312017233    时间: 2013-10-5 17:40
本帖最后由 1312017233 于 2013-10-5 17:42 编辑

打开数据库找到系统
点击标题画面那里的图像
然后选择自己喜欢的标题。




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