Example #1
0
    private void btn_click()
    {
        MgrAudio.PlaySound("s_click.mp3");

        MgrPopup.Hide("Popup1", SceneAnimation.fade, 1f, null);
//        MgrPopup.Show ("Popup2", "55892", SceneAnimation.fade, 1f, () => {
//            Log.Debug ("Popup1 Done~");
//        });
    }
Example #2
0
    private void btn_click()
    {
        MgrAudio.PlaySound("s_click.mp3");
//        foreach (string s in MgrScene.GetAllScenes().Keys) {
//            Log.Debug (s);
//        }
//        MgrPopup.Hide ("Popup1", SceneAnimation.fade, null);
        MgrPopup.HideTop();
//        MgrPopup.Show ("Popup1", "55892", SceneAnimation.fade, 1f, () => {
//            Log.Debug ("Popup1 Done~");
//        });
    }
Example #3
0
 private void btn_click()
 {
     MgrAudio.PlaySound("s_click.mp3");
     MgrScene.GotoScene("Scene1", 998855, Main.anim, 1f, cb);
 }