Project1

标题: VA如何在标题上面添加新的标题 [打印本页]

作者: 2685306974    时间: 2016-11-4 13:34
标题: VA如何在标题上面添加新的标题
如何在标题上面添加新的标题
作者: 魔法丶小肉包    时间: 2016-11-4 16:28
如果楼主不想或懒得画在底图上的话,请把下面的脚本放进脚本编辑器中....
RUBY 代码复制
  1. module MFXRB#设定部分
  2.   BT2 = "标题2"#标题名
  3.   BT2X = 0    #X坐标
  4.   BT2Y = 50   #Y坐标
  5.   BT2SIZE = 48 #字的大小
  6. end
  7. class Scene_Title < Scene_Base
  8.   def create_foreground
  9.     @foreground_sprite = Sprite.new
  10.     @foreground_sprite.bitmap = Bitmap.new(Graphics.width, Graphics.height)
  11.     @foreground_sprite.z = 100
  12.     draw_game_title if $data_system.opt_draw_title
  13.     draw_game_title2 if $data_system.opt_draw_title
  14.   end
  15.   def draw_game_title2
  16.     @foreground_sprite.bitmap.font.size = MFXRB::BT2SIZE
  17.     rect = Rect.new(MFXRB::BT2X, MFXRB::BT2Y, Graphics.width, Graphics.height / 2)
  18.     @foreground_sprite.bitmap.draw_text(rect, MFXRB::BT2, 1)
  19.   end
  20. end






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