MonoGdx.Graphics.G2D.GdxSpriteBatch.End C# (CSharp) 메소드

End() 공개 메소드

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

            Flush();

            _inBegin = false;
        }