Draw transparent and semi-transparent sprites
summary
Draw a semi-transparent texture.
Operating environment
Prerequisites
Supported XNA Versions |
|
Supported Platforms |
|
Windows Required Vertex Shader Version | 2.0 |
Windows Required Pixel Shader Version | 2.0 |
Operating environment
platform |
|
substance
If you use an image file that contains semi-transparent information such as alpha values, you can create textures with semi-transparent information, and sprites can also be drawn semi-transparent. In this case, I'm using a PNG image like the one below to create the texture (although the image below itself has a black background to make it easier to see).
Although it is a program, in fact, it is possible to draw a sprite in semi-transparency even with the code on the "Display sprite" page as it is. Originally, it is not possible to draw transparently unless you specify a blend state that can be processed translucent such as "BlendState.AlphaBlend" in the "SpriteBatch.Begin" method, but since this is set by default, it can be drawn transparently even with the code as it is.
In the code below, we explicitly specify "BlendState.AlphaBlend" for the "SpriteBatch.Begin" method.
// BlendState.AlphaBlend(デフォルト) を指定してスプライトを透過させます
this.spriteBatch.Begin(SpriteSortMode.Deferred, BlendState.AlphaBlend);
SpriteBatch.Begin
method
Call it before drawing the sprite. Internally, we are making the necessary settings for drawing sprites.
sortMode | SpriteSortMode | Specifies the order in which the sprites are drawn from the SpriteSortMode enumeration. The default is SpriteSortMode.Deferred, which is drawn in the order in which the SpriteBatch.Draw method is called. |
blendState | BlendState | How to blend the color of the sprite to be drawn with the background color. By default, BlendState.AlphaBlend is specified for semi-transparent drawing. |
The formula for calculating the color with BlendState.AlphaBlend is as follows: (All colors should be in the range of 0.0 ~ 1.0)
result = source.rgb + destination.rgb * (1 - source.a)
- result : Final output color
- source : The color of the texture you are trying to draw
- destination : The background color of the destination
- RGBA: Components of R (red), G (green), B (blue), and A (alpha (opacity)) respectively
All Codes
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
#if WINDOWS_PHONE
using Microsoft.Xna.Framework.Input.Touch;
#endif
namespace AlphaBlendSprite
{
<summary>
ゲームメインクラス
</summary>
public class GameMain : Microsoft.Xna.Framework.Game
{
<summary>
グラフィックデバイス管理クラス
</summary>
private GraphicsDeviceManager graphics = null;
<summary>
スプライトのバッチ化クラス
</summary>
private SpriteBatch spriteBatch = null;
<summary>
テクスチャー
</summary>
private Texture2D texture = null;
<summary>
GameMain コンストラクタ
</summary>
public GameMain()
{
// グラフィックデバイス管理クラスの作成
this.graphics = new GraphicsDeviceManager(this);
// ゲームコンテンツのルートディレクトリを設定
this.Content.RootDirectory = "Content";
#if WINDOWS_PHONE
// Windows Phone のデフォルトのフレームレートは 30 FPS
this.TargetElapsedTime = TimeSpan.FromTicks(333333);
// バックバッファサイズの設定
this.graphics.PreferredBackBufferWidth = 480;
this.graphics.PreferredBackBufferHeight = 800;
// フルスクリーン表示
this.graphics.IsFullScreen = true;
#endif
}
<summary>
ゲームが始まる前の初期化処理を行うメソッド
グラフィック以外のデータの読み込み、コンポーネントの初期化を行う
</summary>
protected override void Initialize()
{
// TODO: ここに初期化ロジックを書いてください
// コンポーネントの初期化などを行います
base.Initialize();
}
<summary>
ゲームが始まるときに一回だけ呼ばれ
すべてのゲームコンテンツを読み込みます
</summary>
protected override void LoadContent()
{
// テクスチャーを描画するためのスプライトバッチクラスを作成します
this.spriteBatch = new SpriteBatch(this.GraphicsDevice);
// テクスチャーをコンテンツパイプラインから読み込む
this.texture = this.Content.Load<Texture2D>("Texture");
}
<summary>
ゲームが終了するときに一回だけ呼ばれ
すべてのゲームコンテンツをアンロードします
</summary>
protected override void UnloadContent()
{
// TODO: ContentManager で管理されていないコンテンツを
// ここでアンロードしてください
}
<summary>
描画以外のデータ更新等の処理を行うメソッド
主に入力処理、衝突判定などの物理計算、オーディオの再生など
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Update(GameTime gameTime)
{
// Xbox 360 コントローラ、Windows Phone の BACK ボタンを押したときに
// ゲームを終了させます
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
{
this.Exit();
}
// TODO: ここに更新処理を記述してください
// 登録された GameComponent を更新する
base.Update(gameTime);
}
<summary>
描画処理を行うメソッド
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Draw(GameTime gameTime)
{
// 画面を指定した色でクリアします
this.GraphicsDevice.Clear(Color.CornflowerBlue);
// BlendState.AlphaBlend(デフォルト) を指定してスプライトを透過させます
this.spriteBatch.Begin();
// スプライトを描画する
this.spriteBatch.Draw(this.texture, new Vector2(50.0f, 50.0f), Color.White);
// スプライトの一括描画
this.spriteBatch.End();
// 登録された DrawableGameComponent を描画する
base.Draw(gameTime);
}
}
}