Ejemplo n.º 1
0
    void OnDialogNextDataInvestigate()
    {
        mCurIndex++;

        if (mCurIndex == dataInvestigate.Length)
        {
            ModalDialog.CloseGeneric();
        }
        else
        {
            ModalDialog.Open(null, dataInvestigate[mCurIndex], OnDialogNextDataInvestigate);
        }
    }
Ejemplo n.º 2
0
 void OnDialogNextClose()
 {
     ModalDialog.CloseGeneric();
 }