Exemplo n.º 1
0
    /// <summary>
    /// 通过资源名字获得相对路径
    /// </summary>
    /// <param name="name"></param>
    public static string GetRelativePathForName(string name)
    {
        string    suffix = Path.GetExtension(name);
        AssetType type   = EnumEditorTool.GetAssetType(suffix);

        return(AssetsFolderName + type.ToString() + "/" + name);
    }
Exemplo n.º 2
0
        /// <summary>
        /// 递归更新AssetImporter
        /// </summary>
        /// <param name="path"> 资源路径 </param>
        /// <param name="parentName"> 关联更节点资源AssetBundleName </param>
        /// <param name="isDependency"> 是否是关联资源 </param>
        public static void UpdateAssetImporter(string path, string parentName, bool isDependency = false, Func <string, string, bool, string> callback = null)
        {
            AssetImporter ai = AssetImporter.GetAtPath(path);

            if (ai == null)
            {
                EditorUtility.DisplayDialog("错误", string.Format("AssetImporter未成功找到路径:{0}", path), "确定");
                return;
            }
            string    name   = Path.GetFileName(path);
            string    suffix = Path.GetExtension(name);
            AssetType type   = EnumEditorTool.GetAssetType(suffix);

            if (!EnumEditorTool.IsAllowSetAssetBundle(type))
            {
                return;
            }
            if (callback != null)
            {
                parentName = callback(name, parentName, isDependency);
            }
            if (string.IsNullOrEmpty(parentName))
            {
                SetAssetBundleName(ref ai, name);
            }
            else
            {
                SetAssetBundleName(ref ai, parentName);
            }
            //获得关联资源路径
            string[] dependencys = AssetDatabase.GetDependencies(path, false);
            string   dependency  = string.Empty;

            for (int i = 0; i < dependencys.Length; i++)
            {
                dependency = dependencys[i];
                if (string.IsNullOrEmpty(dependency))
                {
                    continue;
                }
                string dependencyName = Path.GetFileName(dependency);
                if (dependencyName.Contains(name))
                {
                    continue;
                }
                UpdateAssetImporter(dependency, isDependency == false ? name : ai.assetBundleName, true, callback);
            }
        }
Exemplo n.º 3
0
        /// <summary>
        ///  递归更新AssetImporter
        /// </summary>
        /// <param name="path"></param>
        public static void UpdateAssetImporter(string path)
        {
            if (CheckAssetsDuplicationNname.Check(path))
            {
                return;
            }
            AssetImporter ai = AssetImporter.GetAtPath(path);

            if (ai == null)
            {
                EditorUtility.DisplayDialog("错误", string.Format("AssetImporter未成功找到路径:{0}", path), "确定");
                return;
            }
            string    name   = Path.GetFileName(path);
            string    suffix = Path.GetExtension(name);
            AssetType type   = EnumEditorTool.GetAssetType(suffix);

            if (!EnumEditorTool.IsAllowSetAssetBundle(type))
            {
                return;
            }
            SetAssetBundleName(ref ai, name);
            //获得关联资源路径
            string[] dependencys = AssetDatabase.GetDependencies(path, false);
            string   dependency  = string.Empty;

            for (int i = 0; i < dependencys.Length; i++)
            {
                dependency = dependencys[i];
                if (string.IsNullOrEmpty(dependency))
                {
                    continue;
                }
                string dependencyName = Path.GetFileName(dependency);
                if (dependencyName.Contains(name))
                {
                    continue;
                }
                UpdateAssetImporter(dependency);
            }
        }