MonoGdx.Graphics.G2D.GdxSpriteBatch.End C# (CSharp) Method

End() public method

public End ( ) : void
return void
        public void End()
        {
            if (!_inBegin) {
                throw new InvalidOperationException("Begin must be called before End can be called.");
            }

            Flush();

            _inBegin = false;
        }