-
Notifications
You must be signed in to change notification settings - Fork 1
/
title_5.rb
35 lines (34 loc) · 1.55 KB
/
title_5.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
29
30
31
32
33
34
35
#==============================================================================
# ■ 5文字用タイトルウィンドウ RGSS3 v1.1 MIT License; see git.io/tic
#------------------------------------------------------------------------------
# タイトル・ゲーム終了ウィンドウを5文字分の幅にし、文字を中央揃えにします。
#==============================================================================
class Window_TitleCommand
#--------------------------------------------------------------------------
# ● アライメントの取得【※再定義※】
#--------------------------------------------------------------------------
def alignment
return 1
end
#--------------------------------------------------------------------------
# ● ウィンドウ幅の取得【※再定義※】
#--------------------------------------------------------------------------
def window_width
return 128
end
end
#------------------------------------------------------------------------------
class Window_GameEnd
#--------------------------------------------------------------------------
# ● アライメントの取得【※再定義※】
#--------------------------------------------------------------------------
def alignment
return 1
end
#--------------------------------------------------------------------------
# ● ウィンドウ幅の取得【※再定義※】
#--------------------------------------------------------------------------
def window_width
return 128
end
end