Skip to content

Instantly share code, notes, and snippets.

@SimonLeeGit
Created October 20, 2021 11:29
Show Gist options
  • Save SimonLeeGit/56c885ff1a0a6393868d4da3b862d163 to your computer and use it in GitHub Desktop.
Save SimonLeeGit/56c885ff1a0a6393868d4da3b862d163 to your computer and use it in GitHub Desktop.
run unreal editor with project in windows
set DIR=%~dp0
set PROJECT_NAME=AgentSim
set PLATFORM_NAME=Win64
set ENGINE_PATH=%DIR%\..\UnrealEngine
set RUN_CMD="%ENGINE_PATH%\Engine\Binaries\%PLATFORM_NAME%\UE4Editor.exe"
set PROJECT_FILE="%DIR%\%PROJECT_NAME%.uproject"
::start "Client" %RUN_CMD% %PROJECT_FILE% ?RosIP=192.168.1.5?RosPort=15000? -game -log -windowed
start "Client" %RUN_CMD% %PROJECT_FILE% -game -log -windowed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment