26 lines
693 B
Batchfile
26 lines
693 B
Batchfile
@echo off
|
|
set "UBA_ROOT=e:\UnrealMainGit\UBA_Root"
|
|
set "PROJECT_PATH=E:\UE5\TG_ARPG\TG_ARPG.uproject"
|
|
set "UE_EDITOR=e:\UnrealMainGit\UnrealEngine\Engine\Binaries\Win64\UnrealEditor.exe"
|
|
echo ========================================
|
|
echo TG_ARPG Launcher (UE 5.8)
|
|
echo ========================================
|
|
echo.
|
|
echo Starting TG_ARPG...
|
|
echo Engine: UE 5.8
|
|
echo Project: %PROJECT_PATH%
|
|
echo.
|
|
if not exist "%UE_EDITOR%" (
|
|
echo [ERROR] UE Editor not found: %UE_EDITOR%
|
|
pause
|
|
exit /b 1
|
|
)
|
|
if not exist "%PROJECT_PATH%" (
|
|
echo [ERROR] Project file not found: %PROJECT_PATH%
|
|
pause
|
|
exit /b 1
|
|
)
|
|
echo Launching editor...
|
|
start "" "%UE_EDITOR%" "%PROJECT_PATH%"
|
|
echo Done.
|