2023-08-15 19:24:33 +08:00
|
|
|
---
|
|
|
|
title: Untitled
|
|
|
|
date: 2023-08-15 18:39:16
|
|
|
|
excerpt:
|
|
|
|
tags:
|
|
|
|
rating: ⭐
|
|
|
|
---
|
2023-08-15 19:35:06 +08:00
|
|
|
# UBT生成解决方案
|
|
|
|
生成解决方案格式:
|
2023-08-15 19:24:33 +08:00
|
|
|
```bash
|
|
|
|
# bash path in Engine\Source\Programs\StandaloneApplication
|
|
|
|
$ UnrealBuildTool.exe -notinstallengine -ProjectFiles StandaloneApplication
|
|
|
|
```
|
2023-08-15 19:35:06 +08:00
|
|
|
之后就会在`Engine\Intermediate\ProjectFiles`出现解决方案。
|
2023-08-15 19:24:33 +08:00
|
|
|
|
2023-08-15 19:35:06 +08:00
|
|
|
比如:
|
2023-08-15 19:24:33 +08:00
|
|
|
```bash
|
2023-08-15 19:35:06 +08:00
|
|
|
cd D:\UnrealEngine\UnrealEngine5\Engine\Source\Programs\HotUpdateGuard
|
|
|
|
D:\UnrealEngine\UnrealEngine5\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.exe -notinstallengine -ProjectFiles HotUpdateGuard
|
|
|
|
```
|
|
|
|
之后在`D:\UnrealEngine\UnrealEngine5\Engine\Intermediate\ProjectFiles`出现解决方案。
|