コード例 #1
0
ファイル: TestDome.cs プロジェクト: ylyking/ABXTool
    // Use this for initialization
    void Start()
    {
        AssetBundleDownload download = new AssetBundleDownload("test1", "http://192.168.50.26");

        download.OnFinishDownload += DownldFinish;
        download.OnError          += Error;
        download.StartDownload(this);
        // AssetBundleDownload download1 = new AssetBundleDownload("test2", "http://192.168.50.26");
        // download1.StartDownload(this);
        info = "ddd";
        //  List<FileData> list = XmlUtils.Load<List<FileData>>("test1");
    }
コード例 #2
0
ファイル: TestDome.cs プロジェクト: ylyking/ABXTool
 // Use this for initialization
 void Start()
 {
     AssetBundleDownload download = new AssetBundleDownload("test1", "http://192.168.50.26");
     download.OnFinishDownload += DownldFinish;
     download.OnError += Error;
     download.StartDownload(this);
     // AssetBundleDownload download1 = new AssetBundleDownload("test2", "http://192.168.50.26");
     // download1.StartDownload(this);
     info = "ddd";
     //  List<FileData> list = XmlUtils.Load<List<FileData>>("test1");
 }