透過処理を行う画像描画プリミティブです。
画像に透過処理が行われる点以外は Image クラスと同じです。 画像イメージ左上端 (0, 0) のピクセル色が抜け色になります。
画像プリミティブを生成します。
[Source]
# File mygame/lib/mygame.rb, line 419 def initialize(filename = nil, *options) #super super(filename, *options) set_transparent_pixel 0, 0 end
[Validate]