Created
October 20, 2021 11:29
-
-
Save SimonLeeGit/56c885ff1a0a6393868d4da3b862d163 to your computer and use it in GitHub Desktop.
run unreal editor with project in windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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