赞 | 170 |
VIP | 6 |
好人卡 | 208 |
积分 | 230 |
经验 | 137153 |
最后登录 | 2024-11-17 |
在线时间 | 8639 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 22963
- 在线时间
- 8639 小时
- 注册时间
- 2011-12-31
- 帖子
- 3367
|
本帖最后由 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
复制代码 |
|