Category5.Animation.nextFrame C# (CSharp) Method

nextFrame() private method

private nextFrame ( ) : void
return void
        private void nextFrame()
        {
            currentFrame++;
            if (currentFrame >= frameCount)
            {
                currentFrame = 0;
            }
        }