Animation Triggers

Hi Guys
   public void IsShotting(bool Estado)
    {
        if (Estado)
        {
            anim.SetTrigger("StandShoot");
            Debug.Log("llamado2");
        }
        else
        {
            anim.SetTrigger("CrouchShoot");
        }
        //CallShotting(isShooting);
        Debug.Log("llamado");
    }
If you launch the debug, but do not execute the triggers, can someone guide me?

Comments