| 
 
| 赞 | 168 |  
| VIP | 6 |  
| 好人卡 | 208 |  
| 积分 | 225 |  
| 经验 | 137153 |  
| 最后登录 | 2025-4-1 |  
| 在线时间 | 8598 小时 |  
 Lv5.捕梦者 
	梦石0 星屑22499 在线时间8598 小时注册时间2011-12-31帖子3361 | 
| 本帖最后由 tseyik 于 2013-10-4 11:10 编辑 
 
   加入版権声明
 复制代码
class Scene_Title
  #--------------------------------------------------------------------------
  # ● 定数
  #--------------------------------------------------------------------------
  Copyright = "©2013 tseyik."          # 著作権表示
  #--------------------------------------------------------------------------
  # ● 前景作成
  #--------------------------------------------------------------------------
  alias toruic_create_foreground create_foreground
  def create_foreground
    toruic_create_foreground
    draw_copyright
  end
  #--------------------------------------------------------------------------
  # ● 【新規】描画著作権
  #--------------------------------------------------------------------------
  def draw_copyright
    @foreground_sprite.bitmap.font.size = 24
    rect = Rect.new(0, Graphics.height - 32, Graphics.width, 24)
    @foreground_sprite.bitmap.draw_text(rect, Copyright, 1)
  end
end
 | 
 |