|
@@ -24,7 +24,9 @@ namespace GFGEditor
|
|
|
public static string ChapterGuideIconTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/FieldGuide/ChapterIcon/";
|
|
|
public static string ChapterGuideIconMd5FileSaveName = "ChapterGuideIconMd5";
|
|
|
|
|
|
-
|
|
|
+ private static string[] StoryGuideIconSrcPaths { get { return new string[] { ResRootPath + "图鉴/故事图鉴" }; } }
|
|
|
+ public static string StoryGuideIconTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/FieldGuide/ChapterIcon/";
|
|
|
+ public static string StoryGuideIconMd5FileSaveName = "StoryGuideIconMd5";
|
|
|
private static string[] MusicSrcPaths { get { return new string[] { ResRootPath + "music/" }; } }
|
|
|
public static string MusicTargetPath = $"{ResPathUtil.MUSIC_DIR_PATH}/";
|
|
|
public static string MusicMd5FileSaveName = "MusicMd5";
|
|
@@ -202,6 +204,9 @@ namespace GFGEditor
|
|
|
//博物图鉴图标
|
|
|
EditorUtility.DisplayProgressBar("进度", "正在导入博物图鉴图标", 1);
|
|
|
ImportRes(ChapterGuideIconSrcPaths, ChapterGuideIconTargetPath, ChapterGuideIconMd5FileSaveName);
|
|
|
+ //故事图鉴图标
|
|
|
+ EditorUtility.DisplayProgressBar("进度", "正在导入故事图鉴图标", 1);
|
|
|
+ ImportRes(StoryGuideIconSrcPaths, StoryGuideIconTargetPath, StoryGuideIconMd5FileSaveName);
|
|
|
//物品图标
|
|
|
EditorUtility.DisplayProgressBar("进度", "正在导入物品图标", 1);
|
|
|
ImportRes(ItemIconSrcPaths, ItemIconTargetPath, IconMd5FileSaveName);
|