コード例 #1
0
ファイル: FUIDownloader.cs プロジェクト: pinzeweifen/DCET
 public void Dispose()
 {
     GameLoop.onUpdate -= Update;
     fuiLoading.Dispose();
     fuiLoading = null;
     bundleDownloader.Dispose();
     bundleDownloader = null;
 }
コード例 #2
0
ファイル: FUIDownloader.cs プロジェクト: pinzeweifen/DCET
        public FUIDownloader()
        {
            fuiLoading = FUILoading.CreateInstance();
            GRoot.inst.AddChild(fuiLoading);
            fuiLoading.MakeFullScreen();

            bundleDownloader = new BundleDownloader();

            GameLoop.onUpdate += Update;
        }