Ejemplo n.º 1
0
 /// <summary>
 /// Sets the transparent blend state
 /// </summary>
 /// <param name="context">Drawing context</param>
 protected virtual void SetBlendStateTransparent(DrawContext context)
 {
     this.Game.Graphics.SetBlendTransparent();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the opaque blend state
 /// </summary>
 /// <param name="context">Drawing context</param>
 protected virtual void SetBlendStateOpaque(DrawContext context)
 {
     this.Game.Graphics.SetBlendDefault();
 }