问题
UE5.1源码版本烘培资源,提示缺少SDK,通过日志查看,错误打印如下:
Unhandled exception: One or more errors occurred. (Found no script module records.)
UATHelper: 正在安装Sdk (Windows): Initializing script modules...
UATHelper: 正在安装Sdk (Windows): Unhandled exception: One or more errors occurred. (Found no script module records.)
UATHelper: 正在安装Sdk (Windows): AutomationTool executed for 0h 0m 0s
UATHelper: 正在安装Sdk (Windows): AutomationTool exiting with ExitCode=0 (Success)
源码
提示出错位置
UnrealEngine\Engine\Source\Programs\AutomationTool\Program.cs
// when the engine is installed, or UAT is invoked with -NoCompile, we expect to find at least one script module (AutomationUtils is a necessity)
if (ScriptModuleAssemblyPaths.Count == 0)
{
throw new Exception("Found no script module records.");
}
标签:errors,script,Windows,UE5.1,no,module,records,UATHelper
From: https://blog.51cto.com/fengyuzaitu/7780496