Пример #1
0
 internal EasyAssetBundleExportConfig(EasyAssetBundleExportConfig copy)
 {
     AssetBundleCachePath  = copy.AssetBundleCachePath;
     ExportAssetBundlePath = copy.ExportAssetBundlePath;
     ExportAssetListPath   = copy.ExportAssetListPath;
     ExportWithManifest    = copy.ExportWithManifest;
     ExportType            = copy.ExportType;
 }
Пример #2
0
 internal EasyAssetBundleBuildConfig(string scriptName)
 {
     Platform              = 0;
     ExportConfig          = new EasyAssetBundleExportConfig();
     UploadConfig          = new EasyAssetBundleUploadConfig();
     AssetLabelConfig      = new EasyAssetBundleLabelConfig();
     AssetBundleListConfig = new EasyAssetBundleListConfig();
     ScriptName            = scriptName;
 }
Пример #3
0
        internal EasyAssetBundleBuildConfig(EasyAssetBundleBuildConfig copy)
        {
            AssetLabelConfig      = new EasyAssetBundleLabelConfig(copy.AssetLabelConfig);
            ExportConfig          = new EasyAssetBundleExportConfig(copy.ExportConfig);
            AssetBundleListConfig = new EasyAssetBundleListConfig(copy.AssetBundleListConfig);
            UploadConfig          = copy.UploadConfig;
            Options = copy.Options;
            AssetBundleBuildRootPath = copy.AssetBundleBuildRootPath;
            Platform = copy.Platform;

            AssetLabelConfig.Initialize(AssetBundleBuildRootPath);
        }