少年修仙传客户端基础资源
client_Wu Xijin
2018-09-20 eaadcf485b96a336e41aea32b049d667c382364c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.IO;
 
public class AssetBundleBuildExtersion
{
    public static void Build(string _output, string _category, BuildAssetBundleOptions _bundleOption, BuildTarget _buildTarget)
    {
        var assetBundles = AssetDatabase.GetAllAssetBundleNames();
 
        List<string> targetAssetBundles = new List<string>();
        for (int i = 0; i < assetBundles.Length; i++)
        {
            var bundleName = assetBundles[i];
            if (bundleName.StartsWith(_category))
            {
                targetAssetBundles.Add(bundleName);
            }
        }
 
        var assets = new List<AssetBundleBuild>();
 
        for (int i = 0; i < targetAssetBundles.Count; i++)
        {
            var assetBundleBuild = new AssetBundleBuild();
            assetBundleBuild.assetBundleName = targetAssetBundles[i];
            assetBundleBuild.assetNames = AssetDatabase.GetAssetPathsFromAssetBundle(targetAssetBundles[i]);
            assets.Add(assetBundleBuild);
        }
 
        var rootPath = StringUtility.Contact(_output, Path.AltDirectorySeparatorChar, _category);
        var mainFile = StringUtility.Contact(_output, Path.AltDirectorySeparatorChar, GetMainFestFileName(_buildTarget));
        var mainFileRename = StringUtility.Contact(_output, Path.AltDirectorySeparatorChar, _category, "_assetbundle");
        var manifest = StringUtility.Contact(_output, Path.AltDirectorySeparatorChar, GetMainFestFileName(_buildTarget), ".manifest");
        var manifestRename = StringUtility.Contact(_output, Path.AltDirectorySeparatorChar, _category, "_assetbundle.manifest");
 
        if (Directory.Exists(rootPath))
        {
            Directory.Delete(rootPath, true);
        }
 
        Directory.CreateDirectory(rootPath);
 
        if (File.Exists(mainFileRename))
        {
            File.Delete(mainFileRename);
        }
 
        if (File.Exists(manifestRename))
        {
            File.Delete(manifestRename);
        }
 
        BuildPipeline.BuildAssetBundles(_output, assets.ToArray(), _bundleOption, _buildTarget);
 
        File.Move(mainFile, mainFileRename);
        File.Move(manifest, manifestRename);
 
    }
 
    static string GetMainFestFileName(BuildTarget _target)
    {
        switch (_target)
        {
            case BuildTarget.StandaloneWindows:
                return "standalone";
            case BuildTarget.Android:
                return "android";
            case BuildTarget.iOS:
                return "ios";
            default:
                return string.Empty;
        }
    }
 
}