Exemple #1
0
 public void ShowPopNews()
 {
     if (this.m_bInit && !this.m_bShowPopNew)
     {
         this.m_bShowPopNew = true;
         string strJson = "{\"type\":\"open\",\"content\":\"LuckyPop\"}";
         Pandora.Do(strJson);
     }
 }
Exemple #2
0
 public void ShowActBox()
 {
     Debug.Log("Pandora ShowActBox1");
     if (this.m_bInit)
     {
         Debug.Log("Pandora ShowActBox2");
         string strJson = "{\"type\":\"open\",\"content\":\"Lucky\"}";
         Pandora.Do(strJson);
     }
 }
Exemple #3
0
 public void PausePandoraSys(bool bPause)
 {
     if (bPause)
     {
         string strJson = "{\"type\":\"inMainSence\",\"content\":\"0\"}";
         Pandora.Do(strJson);
     }
     else
     {
         string str2 = "{\"type\":\"inMainSence\",\"content\":\"1\"}";
         Pandora.Do(str2);
     }
 }