|
@@ -78,7 +78,9 @@ namespace GFGEditor
|
|
|
public static string PhotoGraphBorderTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/Photograph/border/";
|
|
|
public static string PhotoGraphBorderMd5FileSaveName = "PhotoGraphBorderMd5";
|
|
|
|
|
|
-
|
|
|
+ private static string[] UIBgSrcPaths { get { return new string[] { ResRootPath + "UI背景/" }; } }
|
|
|
+ public static string UIBgTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/BgImg/";
|
|
|
+ public static string UIBgMd5FileSaveName = "UIBgMd5";
|
|
|
|
|
|
private static string[] ActivityShow2SrcPaths { get { return new string[] { ResRootPath + "activity/show2/" }; } }
|
|
|
public static string ActivityShow2TargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/Activity/Show2/";
|
|
@@ -145,6 +147,11 @@ namespace GFGEditor
|
|
|
//拍照边框
|
|
|
EditorUtility.DisplayProgressBar("进度", "正在导入卡牌图标", 1);
|
|
|
ImportRes(PhotoGraphBorderPaths, PhotoGraphBorderTargetPath, PhotoGraphBorderMd5FileSaveName);
|
|
|
+
|
|
|
+ //UI背景
|
|
|
+ EditorUtility.DisplayProgressBar("进度", "正在导入UI背景", 1);
|
|
|
+ ImportRes(UIBgSrcPaths, UIBgTargetPath, UIBgMd5FileSaveName);
|
|
|
+
|
|
|
//清除冗余动画
|
|
|
FileUtil.DeleteUnnecessaryAnimation(ImportArtResTool.DressUpAnimationTargetPath, ImportArtResTool.DressUpAnimationSrcPaths[0]);
|
|
|
FileUtil.DeleteUnnecessaryAnimation(ImportArtResTool.EffectTargetPath, ImportArtResTool.EffectSrcPaths[0]);
|