❤ 0 Pour l'utiliser c'est simple.
Dans un évent il suffit d'activer ou désactiver un interrupteur. Par défaut c'est le 7 mais vous pouvez le changer à la ligne 21.
Pour la largeur des bandes noire, il faut aller à la ligne 49.
1
| bitmap = Bitmap.new(Graphics.width, 50) # largeur des bandes noires. |
Voilà c'est tout.
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
| #=begin
# RGSS3
#
# ★ イベント上下黒帯描画 ★
#
# イベントが始まったら上下に黒いラインを描画し映画っぽくします。
#
# ver1.00
#
# Last Update : 2011/12/17
# 12/17 : RGSS2からの移植
#
# ろかん http://kaisou-ryouiki.sakura.ne.jp/
#=end
#===========================================
# 設定箇所
#===========================================
class Movie_Line
# 黒帯を描画するかどうかの判定スイッチ番号
BLS = 7 # interrupteur
end
#===========================================
# ここまで
#===========================================
$rsi ||= {}
$rsi["イベント上下黒帯描画"] = true
class Movie_Line
#--------------------------------------------------------------------------
# ● オブジェクト初期化
#--------------------------------------------------------------------------
def initialize
create_viewport
create_line
end
#--------------------------------------------------------------------------
# ● ビューポートの作成
#--------------------------------------------------------------------------
def create_viewport
@viewport = Viewport.new
@viewport.z = 150
end
#--------------------------------------------------------------------------
# ● 黒帯の作成
#--------------------------------------------------------------------------
def create_line
bitmap = Bitmap.new(Graphics.width, 50) # largeur des bandes noires.
bitmap.fill_rect(0, 0, bitmap.width, bitmap.height, Color.new(0,0,0,255))
@up_line_sprite = Sprite.new(@viewport)
@down_line_sprite = Sprite.new(@viewport)
@up_line_sprite.bitmap = @down_line_sprite.bitmap = bitmap
@up_line_sprite.y = -39
@down_line_sprite.y = Graphics.height
end
#--------------------------------------------------------------------------
# ● 解放
#--------------------------------------------------------------------------
def dispose
@up_line_sprite.bitmap.dispose
@up_line_sprite.dispose
@down_line_sprite.bitmap.dispose
@down_line_sprite.dispose
end
#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
def update
if $game_switches[BLS] && $game_map.interpreter.running?
move_visible_line
else
move_invisible_line
end
end
#--------------------------------------------------------------------------
# ● 黒帯の高さを取得
#--------------------------------------------------------------------------
def line_height
@up_line_sprite.bitmap.height
end
#--------------------------------------------------------------------------
# ● 黒帯を表示
#--------------------------------------------------------------------------
def move_visible_line
unless @up_line_sprite.y.zero?
@up_line_sprite.y = [@up_line_sprite.y + 3, 0].min
@down_line_sprite.y = Graphics.height - (line_height + @up_line_sprite.y)
end
end
#--------------------------------------------------------------------------
# ● 黒帯を非表示
#--------------------------------------------------------------------------
def move_invisible_line
unless @up_line_sprite.y == -line_height
@up_line_sprite.y = [@up_line_sprite.y - 3, -line_height].max
@down_line_sprite.y = Graphics.height - (line_height + @up_line_sprite.y)
end
end
end
class Spriteset_Map
#--------------------------------------------------------------------------
# ● オブジェクト初期化
#--------------------------------------------------------------------------
alias black_line_initialize initialize
def initialize
create_line
black_line_initialize
end
#--------------------------------------------------------------------------
# ● 黒帯の作成
#--------------------------------------------------------------------------
def create_line
@movie_line = Movie_Line.new
end
#--------------------------------------------------------------------------
# ● 解放
#--------------------------------------------------------------------------
alias black_line_dispose dispose
def dispose
dispose_line
black_line_dispose
end
#--------------------------------------------------------------------------
# ● 黒帯の解放
#--------------------------------------------------------------------------
def dispose_line
@movie_line.dispose
end
#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
alias black_line_update update
def update
update_line
black_line_update
end
#--------------------------------------------------------------------------
# ● 黒帯の更新
#--------------------------------------------------------------------------
def update_line
@movie_line.update
end
end |
Source -> http://kaisou-ryouiki.sakura.ne.jp/
|