Example #1
0
    public void Studying(string content, float sc)
    {
        Debug.LogError("Studying:" + content + ":" + sc.ToString());
        KnowScore ks = new KnowScore();

        ks.content = content;
        ks.score   = sc.ToString();
        ks.usePromptPronunciation = false;
        score.knowScoreList.Add(ks);
    }
Example #2
0
    public void Studying(Sentence sentence, float sc)
    {
        Debug.Log("Studying:" + sentence.en);

        KnowScore ks = new KnowScore();

        ks.content = sentence.en;
        ks.score   = sc.ToString();
        ks.usePromptPronunciation = false;
        score.knowScoreList.Add(ks);
    }