Ejemplo n.º 1
0
    private AssetLoader abRes; // 下层资源加载类的对象


    public WWWLoader(string bundleName, LoadProgress lp, LoadCompeleted lc)
    {
        this.bundleName = bundleName;
        this.bundlePath = PathUtil.GetWWWPath() + "/" + bundleName;
        www             = null;
        this.lp         = lp;
        this.lc         = lc;
        abRes           = null;
    }
Ejemplo n.º 2
0
 protected virtual void OnFileLoadCompeleted(LineReadingEventArgs e)
 {
     LoadCompeleted?.Invoke(this, e);
 }