-
Notifications
You must be signed in to change notification settings - Fork 1
/
title_copyright.rb
28 lines (27 loc) · 1.35 KB
/
title_copyright.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#==============================================================================
# ■ タイトル画面に著作権表示 RGSS3 v1.0 MIT License; see git.io/tic
#------------------------------------------------------------------------------
# タイトル画面に任意の著作権表示を描画します。
#==============================================================================
class Scene_Title
#--------------------------------------------------------------------------
# ● 定数
#--------------------------------------------------------------------------
Copyright = "©20XX Your Name." # 著作権表示
#--------------------------------------------------------------------------
# ● 前景の作成【エイリアス】
#--------------------------------------------------------------------------
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