User Tools

Site Tools


software:unreal

This is an old revision of the document!


Requirements

  • vulkan (since Unreal Engine 4.25)

Installation

Vulkan

https://linuxconfig.org/install-and-test-vulkan-on-linux/

AMD

  • sudo add-apt-repository ppa:oibaf/graphics-drivers
  • sudo apt update
  • sudo apt upgrade
  • apt install libvulkan1 mesa-vulkan-drivers vulkan-utils

NVIDIA

  • sudo add-apt-repository ppa:graphics-drivers/ppa
  • sudo apt upgrade
  • sudo apt install nvidia-graphics-drivers-396 nvidia-settings vulkan vulkan-utils

Unreal Engine 4

Remote

Bash script for opening unreal or a project file directly

#!/bin/bash
if [ -z "$1"]
then
	$HOME/work/development/UnrealEngine/Engine/Binaries/Linux/UE4Editor -norelativemousemode
else
    DIR="$( cd "$( dirname "${BASH_SOURCE[0]}"  )" && pwd  )"
	($HOME/work/development/UnrealEngine/Engine/Binaries/Linux/UE4Editor `pwd`/$1 -norelativemousemode)
fi

Example

  • cd /path/to/“project file”
  • ./bashfile project.uproject
software/unreal.1630318352.txt.gz · Last modified: 2021/08/30 10:12 by mine1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki