From 5b5d97a051c17c2c39b6422cf8c22b3f6f3511f1 Mon Sep 17 00:00:00 2001 From: Oleg Petruny Date: Wed, 15 Jan 2025 21:08:07 +0100 Subject: [PATCH] readme 2 --- UnrealProject/Lost_Edge/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnrealProject/Lost_Edge/README.md b/UnrealProject/Lost_Edge/README.md index e6e8bcf..4079c5f 100644 --- a/UnrealProject/Lost_Edge/README.md +++ b/UnrealProject/Lost_Edge/README.md @@ -1,7 +1,7 @@ # How to compile It's recommended to work in Unreal Engine 5.5 and to install Visual Studio with the necessary packages as it described in the [official documentation](https://dev.epicgames.com/documentation/en-us/unreal-engine/setting-up-visual-studio-development-environment-for-cplusplus-projects-in-unreal-engine) (recommended settings aren't needed). \ -After repo cloning, the Visual Studio project files needs to be generated. It can be done in the explorer RMB context menu of file "UnrealProject/Lost_Edge/Lost_Edge.uproject". Or by typing "%UE5PATH%\Engine\Build\BatchFiles\GenerateProjectFiles.bat" "%REPOPATH%\UnrealProject\Lost_Edge\Lost_Edge.uproject". \ -After generating, appears the `Lost_Edge.sln`. Opent it and start building for the first time, which will fail. This is because of using OpenCV plugin that together with UnrealEngine implement their own `check()` function. The error can be used to determine that in the file `%UE5PATH%\Engine\Plugins\Runtime\OpenCV\Source\ThirdParty\OpenCV\include\opencv2\core\utility.hpp` it is necessary to: +After repo cloning, the Visual Studio project files needs to be generated. It can be done in the explorer RMB context menu of file `UnrealProject/Lost_Edge/Lost_Edge.uproject` - option `Generate project files`. Or by running `%UE5_PATH%\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.exe -game "%REPO_PATH%\Lost_Edge\UnrealProject\Lost_Edge\Lost_Edge.uproject" -VSCode`. \ +After generating, appears the `Lost_Edge.sln`. Opent it and start building for the first time, which will fail. This is because of using OpenCV plugin that together with UnrealEngine implement their own `check()` function. The error can be used to determine that in the file `%UE5_PATH%\Engine\Plugins\Runtime\OpenCV\Source\ThirdParty\OpenCV\include\opencv2\core\utility.hpp` it is necessary to: - comment out the warning macro on lines 52-54, - and rename the function itself on line 957 to, for example, `checkcv()`. After opencv library modification, the build should run fine and it is possible to open the `Lost_Edge.uproject` in UnrealEngine. \ No newline at end of file