Beispiel #1
0
        //深度遍历依赖的资源
        public static void GenChildrenNodes(ResNode rootNode, Dictionary <string, ResNode> resNodeDic)
        {
            List <string> depList = AssetBundleUtil.GetDependencies(rootNode.fullName); //GetDependencies(file.Directory + "\\" +  file.Name);

            foreach (var depPath in depList)
            {
                //如果是本身
                if (depPath == rootNode.fullName)
                {
                    continue;
                }
                string depName = depPath;
                rootNode.children.Add(depName);
                if (!resNodeDic.TryGetValue(depName, out ResNode node))
                {
                    node = new ResNode()
                    {
                        fullName = depName
                    };
                    resNodeDic[depName] = node;
                }
                node.parents.Add(rootNode.fullName);
                GenChildrenNodes(node, resNodeDic);
            }
        }
Beispiel #2
0
        public static void Start()
        {
            if (!Directory.Exists(AssetBundlesOutputPath))
            {
                Directory.CreateDirectory(AssetBundlesOutputPath);
            }
            //获取所有要打包的文件名(全路径)
            List <FileInfo> fileList = AssetBundleUtil.GetAllRootFilePath();
            //组织存储了依赖关系的dic<资源名字-resnode>
            var resNodeDic = GenNodes(fileList);

            //组织dic<包名-包含的资源>

            //根据BuildSetting里面所激活的平台进行打包
            BuildPipeline.BuildAssetBundles(AssetBundlesOutputPath, 0, EditorUserBuildSettings.activeBuildTarget);
        }