Exemple #1
0
    public void SaySomething()
    {
        if (speechController == null)
        {
            return;
        }
        SpeechInsightType speechType = RandomSpeechType();
        string            speech     = speechBank.RandSpeech(opponentIndex, speechType);

        speechController.CreateSpeech(speech).Destroy(0, scaleSpeed, 0, fadeSpeed);
    }