void Updating()
    {
        //shoot out raycasts and wait for amount of time before returning back to patrol
        if (!soundStarted)
        {
            soundStarted = true;
            enemy.PlaySound(enemy.enemyAudio, enemy.investigateSound);
        }
        enemy.Investigate();

        //TRANSITIONS GO HERE
    }