|
@@ -10,8 +10,9 @@ namespace GFGEditor
|
|
|
public class ImportArtResTool
|
|
|
{
|
|
|
public static string ResRootDirName = "正式资源";
|
|
|
- //public static string ResRootDirName = "正式资源-demo1";
|
|
|
+ public static string ResRootDirNameDressUp = "正式资源";
|
|
|
public static string ResRootPath { get { return $"../../../gfg/{ResRootDirName}/"; } }
|
|
|
+ public static string ResRootPathDressUp { get { return $"../../../gfg/{ResRootDirNameDressUp}/"; } }
|
|
|
|
|
|
public static string ragule = @"^[0-9a-zA-Z_]{1,}$";
|
|
|
public static string Md5FilePath = "Assets/MD5";
|
|
@@ -31,7 +32,7 @@ namespace GFGEditor
|
|
|
public static string IconMd5FileSaveName = "IconMd5";
|
|
|
|
|
|
|
|
|
- private static string[] DressUpSrcPaths { get { return new string[] { ResRootPath + "suit/" }; } }
|
|
|
+ private static string[] DressUpSrcPaths { get { return new string[] { ResRootPathDressUp + "suit/" }; } }
|
|
|
public static string DressUpTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/DressUp/";
|
|
|
public static string DressUpMd5FileSaveName = "DressUpMd5";
|
|
|
|
|
@@ -50,7 +51,7 @@ namespace GFGEditor
|
|
|
public static string PicSMd5FileSaveName = "PicSMd5";
|
|
|
|
|
|
|
|
|
- private static string[] BgSrcPaths { get { return new string[] { ResRootPath + "scene/" }; } }
|
|
|
+ private static string[] BgSrcPaths { get { return new string[] { ResRootPathDressUp + "scene/" }; } }
|
|
|
public static string BgTargetPath = $"{ResPathUtil.TEXTURE_DIR_PATH}/DressUp/";
|
|
|
public static string BgMd5FileSaveName = "BgMd5";
|
|
|
|
|
@@ -65,7 +66,7 @@ namespace GFGEditor
|
|
|
public static string CardMd5FileSaveName = "CardMd5";
|
|
|
|
|
|
|
|
|
- public static string[] DressUpAnimationSrcPaths { get { return new string[] { ResRootPath + $"ArtProject/{ResPathUtil.ANIMATION_DIR_PATH}/" }; } }
|
|
|
+ public static string[] DressUpAnimationSrcPaths { get { return new string[] { ResRootPathDressUp + $"ArtProject/{ResPathUtil.ANIMATION_DIR_PATH}/" }; } }
|
|
|
public static string DressUpAnimationTargetPath = $"{ResPathUtil.ANIMATION_DIR_PATH}/";
|
|
|
|
|
|
|