MyGame.HPBillboardSystem.drawOpaquePixels C# (CSharp) Method

drawOpaquePixels() public method

public drawOpaquePixels ( ) : void
return void
        void drawOpaquePixels()
        {
            graphicsDevice.DepthStencilState = DepthStencilState.Default;

            effect.Parameters["AlphaTest"].SetValue(true);
            effect.Parameters["AlphaTestGreater"].SetValue(true);

            drawBillboards();
        }