|
虚幻引擎(Unreal Engine)安装
安装 Visual Studio
不同版本的 UE 引擎支持的 VS 版本也有所不同,建议安装前在引擎中查询 UEBuildWindows.cs 文件,里面记录了此版本的 UE4 可以用哪个版本的 VS 编译
在 UE4.23 版本中如下- publicenumWindowsCompiler{/// <summary>/// Use the default compiler. A specific value will always be used outside of configuration classes./// </summary>
- Default,/// <summary>/// Use Clang for Windows, using the clang-cl driver./// </summary>
- Clang,/// <summary>/// Use the Intel C++ compiler/// </summary>
- Intel,/// <summary>/// Visual Studio 2015 (Visual C++ 14.0)/// </summary>
- VisualStudio2015_DEPRECATED,/// <summary>/// Visual Studio 2015 (Visual C++ 14.0)/// </summary>[Obsolete("UE4 does not support building Visual Studio 2015 targets from the 4.22 release onwards.")]
- VisualStudio2015 = VisualStudio2015_DEPRECATED,/// <summary>/// Visual Studio 2017 (Visual C++ 15.0)/// </summary>
- VisualStudio2017,/// <summary>/// Visual Studio 2019 (Visual C++ 16.0)/// </summary>
- VisualStudio2019,}
复制代码
下载虚幻引擎源代码
虚幻源码主页(需要通过Epic认证):https://github.com/EpicGames/UnrealEngine选择合适的版本分支克隆源代码
下载虚幻引擎二进制文件
点击 Setup.bat 文件来下载大小约为 3-4 GB
生成项目文件
- ./GenerateProjectFiles.bat -2019 (你的VS版本)
复制代码使用 .sln 文件打开 VS 项目将 solution configuration 设置为 Development Editor将 solution platform 设置为 Win64右键单击 UE4 项目 build
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
×
|