Link changed

This commit is contained in:
sergi-e 2020-06-12 11:05:53 +02:00 committed by bernat
parent 4ef23157ba
commit d8c165ae07
2 changed files with 6 additions and 6 deletions

View File

@ -60,8 +60,8 @@ git clone --depth=1 -b 4.24 https://github.com/EpicGames/UnrealEngine.git ~/Unre
cd ~/UnrealEngine_4.24
# Download and install the UE patch
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt
patch --strip=4 < ~/Downloads/430667-13636743-patch.txt
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt
patch --strip=4 < ~/430667-13636743-patch.txt
# Build UE
./Setup.sh && ./GenerateProjectFiles.sh && make
@ -162,8 +162,8 @@ cd ~/UnrealEngine_4.24
Get a patch for Unreal Engine. The patch fixes some Vulkan visualization issues that may occur when changing the map. Download and install it with the following commands.
```sh
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt
patch --strip=4 < ~/Downloads/430667-13636743-patch.txt
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt
patch --strip=4 < ~/430667-13636743-patch.txt
```
Make the build.

View File

@ -68,8 +68,8 @@ The Linux build needs for an UE patch to solve some visualization issues regardi
```sh
# Download and install the UE patch
cd ~/UnrealEngine_4.24
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt
patch --strip=4 < ~/Downloads/430667-13636743-patch.txt
wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt
patch --strip=4 < ~/430667-13636743-patch.txt
# Build UE
./Setup.sh && ./GenerateProjectFiles.sh && make
```