public void AttackStarted(AnimationEvent animationEvent)
    {
        if (movementModel != null)
        {
            movementModel.AttackStarted();
        }

        if (movementView != null)
        {
            movementView.OnAttackStarted();
        }
        SetSortingOrderOfWeapon(animationEvent.intParameter);
    }