Open 132982jianan opened 4 hours ago
感谢反馈,该问题已得到修复。
---- 回复的原邮件 ---- | 发件人 | @.> | | 发送日期 | 2024年11月18日 00:30 | | 收件人 | ZMteacher/ZMFrameWork @.> | | 抄送人 | Subscribed @.***> | | 主题 | [ZMteacher/ZMFrameWork] GeneratorModuleWindow.cs类导出的类位置错误 (Issue #1) |
框架非常Nice!!!
1.GeneratorModuleWindow.cs下代码有个小bug,会导致Scripts和命名空间拼接不上,导出的类位置有错误。
2.经过测试,修改为如下:才能导出正确,老师记得修复下呀!!! private string[] mFolderArr = new string[] { "DataMgr", "MsgMgr", "LogicCtrl" };
mFilePath = Application.dataPath + "/" + Path.Combine(moduleConfig.savePath + "/", moduleConfig.modules[index].moduleName + "/", folder + "/", mFileName);
这样子才行
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.***>
框架非常Nice!!!
1.GeneratorModuleWindow.cs下代码有个小bug,会导致Scripts和命名空间拼接不上,导出的类位置有错误。
2.经过测试,修改为如下:才能导出正确,老师记得修复下呀!!! private string[] mFolderArr = new string[] { "DataMgr", "MsgMgr", "LogicCtrl" };
mFilePath = Application.dataPath + "/" + Path.Combine(moduleConfig.savePath + "/", moduleConfig.modules[index].moduleName + "/", folder + "/", mFileName);
这样子才行,或者用$"{}"拼接下