MyGame.HPBillboardSystem.drawTransparentPixels C# (CSharp) Method

drawTransparentPixels() public method

public drawTransparentPixels ( ) : void
return void
        void drawTransparentPixels()
        {
            graphicsDevice.DepthStencilState = DepthStencilState.DepthRead;

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

            drawBillboards();
        }