private void Update()
    {
        if (Input.GetKeyDown(KeyCode.X))
        {
            if (!isAttacking && playerController.IsGrounded)
            {
                comboIndex = 1;
                StartAttack(comboIndex);
            }
            else if (comboEnable)
            {
                comboQueued = true;
                comboBufferTimer = comboBufferTime;
            }

            if (Input.GetKeyDown(KeyCode.V))
            {
                anim.SetTrigger("FanAttack");
                ShootFanProjectile();
            }
        }

//X는 잘되는데 왜 V키는 작동을 안할까요 디버그해도 V키가 눌렸다는게 안떠요 ㅠㅠㅠ