Exemple #1
0
    virtual protected void ShowTalk(string msg, int time)
    {
        if (mPaoPao == null)
        {
            mPaoPao = PaoPaoManager.Instance.CreatePaoPaoUI();
        }

        if (mPaoPao != null)
        {
            mPaoPao.Talk(msg, time);
        }
    }
Exemple #2
0
    void NextPaoPao(ZhushouTableItem item)
    {
        mCurItem = item;

        mPaoPao.Talk(mCurItem.talk, -1, mDepth + 1);
    }