Пример #1
0
    public void SetIntroQuote(bool isFighterOne)
    {
        fighterSpeechText.enabled = true;
        string fullIntroQuote;

        if (isFighterOne)
        {
            fullIntroQuote = fighterOne.GetRandomIntroQuote();
        }
        else
        {
            fullIntroQuote = fighterTwo.GetRandomIntroQuote();
        }
        StartCoroutine(SpellOutQuote(fullIntroQuote));
    }