Squashed
This commit is contained in:
commit
a45a0e8685
12 changed files with 311 additions and 0 deletions
15
bin/unreal.sh
Executable file
15
bin/unreal.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -euo pipefail
|
||||
shopt -s nullglob
|
||||
|
||||
ADDITIONAL=""
|
||||
PROJECTS=(*.uproject)
|
||||
|
||||
if [[ ${#PROJECTS[@]} -gt 0 ]]; then
|
||||
ADDITIONAL="$(pwd)/${PROJECTS[0]}"
|
||||
echo "Found project, passing to cli: '$ADDITIONAL'"
|
||||
fi
|
||||
|
||||
"$HOME/UnrealEngine/UE_5-4-2/Engine/Binaries/Linux/UnrealEditor" $ADDITIONAL
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue