WindowsPuzzleVisualizer.Game1.EndAnimation C# (CSharp) 메소드

EndAnimation() 개인적인 메소드

private EndAnimation ( ) : void
리턴 void
        private void EndAnimation()
        {
            isAnimating = false;
            _animationPercent = 0;
            _puzzleAnimationDirection = Point.Zero;
            _puzzlePiecesMoving = Enumerable.Empty<PuzzlePiece>();

            _moveIndex = _animationEndMoveIndex;

            _puzzleState = _moves[_moveIndex].PuzzleState;
            modelPosition = GetCenteringVector(_puzzleState);
        }