同步服务器导出SceneType

同步服务器导出SceneType
This commit is contained in:
ALEXTANG
2023-09-05 21:07:33 +08:00
parent 4c748df7ac
commit 1cdd8b63b4
5 changed files with 85 additions and 17 deletions

View File

@@ -70,6 +70,10 @@ public static class Define
/// </summary>
public static string ClientCustomExportDirectory;
/// <summary>
/// SceneConfig.xlsx的位置
/// </summary>
public static string SceneConfigPath;
/// <summary>
/// 自定义导出代码存放的程序集
/// </summary>
public static string CustomExportAssembly;

View File

@@ -69,6 +69,8 @@ public static class TEngineSettingsHelper
Define.ServerCustomExportDirectory = FileHelper.GetFullPath(root["Export:ServerCustomExportDirectory:Value"]);
// 客户端自定义导出代码
Define.ClientCustomExportDirectory = FileHelper.GetFullPath(root["Export:ClientCustomExportDirectory:Value"]);
// SceneConfig.xlsx的位置
Define.SceneConfigPath = FileHelper.GetFullPath(root["Export:SceneConfigPath:Value"]);
// 自定义导出代码存放的程序集
Define.CustomExportAssembly = FileHelper.GetFullPath(root["Export:CustomExportAssembly:Value"]);
}