Esempio n. 1
0
        private void DoInit()
        {
            if (Bussy == null)
            {
                Bussy = new BussyDlg();
            }

            Bussy.Show("Loading scene: " + DemoName);

            Action doStart = delegate
            {
                Init();
                Bussy.Hide();
                UpdateRenderSize();
                RequestFrame();
            };

            Window.SetTimeout(doStart, 500);
        }
Esempio n. 2
0
        private void DoInit()
        {
            if (Bussy == null)
                Bussy = new BussyDlg();

            Bussy.Show("Loading scene: " + DemoName);

            Action doStart = delegate
            {
                Init();
                Bussy.Hide();
                UpdateRenderSize();
                RequestFrame();
            };

            Window.SetTimeout(doStart, 500);
        }