Compare commits

..

5 Commits

Author SHA1 Message Date
Jb win
08625b8b1f MISC - Removed thought process comments from header 2025-05-01 20:37:35 +07:00
Jb win
f5f09ae5ea FIX - left side was not working
+ Removed useless var
+ added logs
+ cycle back to initial RestPosition
2025-05-01 20:34:04 +07:00
Jb win
0615d3c395 FT - SO100-PilotComponent
+ Grab Sequence Retrac->Find Target->Rotate towards target->Extend->Grab->Drop
+ Can work with any target on the right side (left side bugged - I know why)
2025-05-01 20:10:56 +07:00
Jb win
0775aeaa7b WIP - Architecture for brute force animation
+ sequence look / extend / grab / drop
2025-05-01 03:11:58 +07:00
Jb win
a0478a75b3 FT - PilotComponent to drive so100
+ Base class for RobotPawn -> might be replaced by an Actor instead?
2025-04-30 21:47:07 +07:00

View File

@ -6,38 +6,6 @@ set "UE_PATH=C:\Program Files\UE_5.5"
set "PROJECT_PATH=%~dp0"
set "UAT_PATH=%UE_PATH%\Engine\Build\BatchFiles\RunUAT.bat"
:: Check if MuJoCo DLL exists in bin directory
if not exist "%MUJOCO_BIN_PATH%\mujoco.dll" (
echo Error: MuJoCo DLL not found at %MUJOCO_BIN_PATH%\mujoco.dll
echo Please ensure the MuJoCo DLL is properly built and placed in the correct location.
pause
exit /b 1
)
:: Copy MuJoCo DLL to the plugin binaries directory if it doesn't exist there
if not exist "%MUJOCO_DLL_PATH%\mujoco.dll" (
echo Copying MuJoCo DLL to plugin binaries directory...
copy "%MUJOCO_BIN_PATH%\mujoco.dll" "%MUJOCO_DLL_PATH%\"
if errorlevel 1 (
echo Failed to copy MuJoCo DLL
pause
exit /b 1
)
)
:: Add UE and MuJoCo paths to PATH environment variable
set "PATH=%UE_PATH%\Engine\Binaries\Win64;%MUJOCO_DLL_PATH%;%MUJOCO_BIN_PATH%;%PATH%"
:: Set the DLL search path for the current process
set "PATH=%PATH%;%MUJOCO_DLL_PATH%;%MUJOCO_BIN_PATH%"
:: Run the Unreal Editor
:: echo Starting Unreal Editor...
:: start "" "%UE_PATH%\Engine\Binaries\Win64\UnrealEditor.exe" "%PROJECT_PATH%LuckyWorldV2.uproject"
endlocal
:: Build and package command
"%UAT_PATH%" ^
-ScriptsForProject="%PROJECT_PATH%LuckyWorldV2.uproject" ^